Skip to content

Commit

Permalink
example: Fix memory leak in ws_echo_server when httpd_queue_work failed
Browse files Browse the repository at this point in the history
Closes #11507
  • Loading branch information
ESP-YJM committed May 26, 2023
1 parent 6ad6fb9 commit 997f9dd
Showing 1 changed file with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,16 @@ static void ws_async_send(void *arg)
static esp_err_t trigger_async_send(httpd_handle_t handle, httpd_req_t *req)
{
struct async_resp_arg *resp_arg = malloc(sizeof(struct async_resp_arg));
if (resp_arg == NULL) {
return ESP_ERR_NO_MEM;
}
resp_arg->hd = req->handle;
resp_arg->fd = httpd_req_to_sockfd(req);
return httpd_queue_work(handle, ws_async_send, resp_arg);
esp_err_t ret = httpd_queue_work(handle, ws_async_send, resp_arg);
if (ret != ESP_OK) {
free(resp_arg);
}
return ret;
}

/*
Expand Down

0 comments on commit 997f9dd

Please sign in to comment.