Skip to content
Snippets Groups Projects
Commit a99197da authored by deuce's avatar deuce
Browse files

Use vsprintf(), not sprintf(), make a copy of the va_list, return the correct

value for the Win32 asprintf().
parent 71eea6ad
No related branches found
No related tags found
No related merge requests found
......@@ -48,17 +48,21 @@
int asprintf(char **strptr, char *format, ...)
{
va_list va;
va_list va2;
int ret;
if (strptr == NULL)
return -1;
va_start(va, format);
va_copy(va2, va);
ret = _vscprintf(format, va);
*strptr = (char *)malloc(ret+1);
if (*strptr == NULL)
return -1;
ret = sprintf(*strptr, format, va);
ret = vsprintf(*strptr, format, va2);
va_end(va);
va_end(va2);
return ret;
}
#endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment