Pavel Chromy: va_copy should always be paired with va_end.
git-svn-id: svn://svn.berlios.de/openocd/trunk@459 b42882b7-edfa-0310-969c-e2dbd0fdcd60
This commit is contained in:
parent
ff59d1c495
commit
d74d72c73a
|
@ -288,6 +288,9 @@ char *alloc_printf(const char *fmt, va_list ap)
|
|||
|
||||
int ret;
|
||||
ret = vsnprintf(string, size, fmt, ap_copy);
|
||||
|
||||
va_end(ap_copy);
|
||||
|
||||
/* NB! The result of the vsnprintf() might be an *EMPTY* string! */
|
||||
if ((ret >= 0) && ((ret + 1) < size))
|
||||
break;
|
||||
|
|
Loading…
Reference in New Issue