mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
Merge branch 'fix/https_server_memory_leak' into 'master'
esp_http_server: Fix transport_ctx not getting freed Closes IDFGH-5027 See merge request espressif/esp-idf!13037
This commit is contained in:
commit
66b66f1fb5
@ -244,7 +244,7 @@ void httpd_sess_free_ctx(void **ctx, httpd_free_ctx_fn_t free_fn)
|
||||
|
||||
void httpd_sess_clear_ctx(struct sock_db *session)
|
||||
{
|
||||
if ((!session) || (!session->ctx)) {
|
||||
if ((!session) || ((!session->ctx) && (!session->transport_ctx))) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user