1
1

Fixed memory leak in 'OTF_vsnprintf()'

This commit was SVN r19842.
Этот коммит содержится в:
Matthias Jurenz 2008-10-29 12:38:12 +00:00
родитель d2c3a3cede
Коммит e119e42c08

Просмотреть файл

@ -243,6 +243,9 @@ int OTF_vsnprintf(char* str, size_t size, const char* fmt, va_list ap) {
}
}
/* free allocated buffer */
free(buf);
return length;
}