mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
Fix memory leak on error path in md5_printf
This commit is contained in:
parent
de49ec5a46
commit
e634a00ef8
@ -51,6 +51,7 @@ static int md5_printf(char *md, const char *fmt, ...)
|
|||||||
va_start(ap, fmt);
|
va_start(ap, fmt);
|
||||||
len = vasprintf((char **)&buf, fmt, ap);
|
len = vasprintf((char **)&buf, fmt, ap);
|
||||||
if (buf == NULL) {
|
if (buf == NULL) {
|
||||||
|
va_end(ap);
|
||||||
return ESP_FAIL;
|
return ESP_FAIL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user