kopia lustrzana https://github.com/espressif/esp-idf
Fix memory leak on error path in md5_printf
rodzic
f88a2f10c2
commit
b07ad7a08d
|
@ -43,6 +43,7 @@ static int md5_printf(char *md, const char *fmt, ...)
|
|||
va_start(ap, fmt);
|
||||
len = vasprintf((char **)&buf, fmt, ap);
|
||||
if (buf == NULL) {
|
||||
va_end(ap);
|
||||
return ESP_FAIL;
|
||||
}
|
||||
|
||||
|
|
Ładowanie…
Reference in New Issue