forked from espressif/esp-idf
esp_http_server: Fix transport_ctx not getting freed
Closes https://github.com/espressif/esp-idf/issues/6813
This commit is contained in:
@@ -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)
|
void httpd_sess_clear_ctx(struct sock_db *session)
|
||||||
{
|
{
|
||||||
if ((!session) || (!session->ctx)) {
|
if ((!session) || ((!session->ctx) && (!session->transport_ctx))) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user