esp_http_server: Fix transport_ctx not getting freed

Closes https://github.com/espressif/esp-idf/issues/6813
This commit is contained in:
Aditya Patwardhan 2021-04-06 18:42:30 +05:30 committed by bot
parent c22eb769e7
commit 3e82fcd566

View File

@ -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;
}