mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2024-11-08 12:18:42 +00:00
Testing: Don't call vsnprintf with NULL format
This commit is contained in:
parent
24493e9169
commit
c41a914d6e
@ -199,7 +199,8 @@ bt_log_result(int result, const char *fmt, va_list argptr)
|
||||
(fmt && strlen(fmt) > 0) ? ": " : "");
|
||||
pos = msg_buf + strlen(msg_buf);
|
||||
|
||||
vsnprintf(pos, sizeof(msg_buf) - (pos - msg_buf), fmt, argptr);
|
||||
if (fmt)
|
||||
vsnprintf(pos, sizeof(msg_buf) - (pos - msg_buf), fmt, argptr);
|
||||
|
||||
int chrs = 0;
|
||||
for (uint i = 0; i < strlen(msg_buf); i += get_num_terminal_cols())
|
||||
|
Loading…
Reference in New Issue
Block a user