Use my_vsnprintf instead of vsnprintf
This commit is contained in:
parent
77ec64a33f
commit
557f6169b9
@ -936,7 +936,7 @@ void log_msg(const char *fmt, ...)
|
||||
|
||||
memset(buff, 0, sizeof(buff));
|
||||
va_start(args, fmt);
|
||||
len= vsnprintf(buff, sizeof(buff)-1, fmt, args);
|
||||
len= my_vsnprintf(buff, sizeof(buff)-1, fmt, args);
|
||||
va_end(args);
|
||||
|
||||
dynstr_append_mem(&ds_res, buff, len);
|
||||
|
Loading…
x
Reference in New Issue
Block a user