mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-01 03:34:32 +02:00
Fix memory leak on error path in http_header_set_format
This commit is contained in:
committed by
Aditya Patwardhan
parent
88abe2a4cb
commit
7e7d4e291d
@@ -162,8 +162,8 @@ int http_header_set_format(http_header_handle_t header, const char *key, const c
|
||||
char *buf = NULL;
|
||||
va_start(argptr, format);
|
||||
len = vasprintf(&buf, format, argptr);
|
||||
HTTP_MEM_CHECK(TAG, buf, return 0);
|
||||
va_end(argptr);
|
||||
HTTP_MEM_CHECK(TAG, buf, return 0);
|
||||
if (buf == NULL) {
|
||||
return 0;
|
||||
}
|
||||
|
Reference in New Issue
Block a user