mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2024-12-24 10:41:54 +00:00
RPKI: fixed rare va_list leak
This commit is contained in:
parent
64bad8e71b
commit
fcc62d55e7
@ -1011,6 +1011,7 @@ rpki_send_error_pdu(struct rpki_cache *cache, const enum pdu_error_type error_co
|
|||||||
{
|
{
|
||||||
va_start(args, fmt);
|
va_start(args, fmt);
|
||||||
msg_len = bvsnprintf(msg, sizeof(msg), fmt, args) + 1;
|
msg_len = bvsnprintf(msg, sizeof(msg), fmt, args) + 1;
|
||||||
|
va_end(args);
|
||||||
}
|
}
|
||||||
|
|
||||||
u32 pdu_size = 16 + err_pdu_len + msg_len;
|
u32 pdu_size = 16 + err_pdu_len + msg_len;
|
||||||
|
Loading…
Reference in New Issue
Block a user