diff options
Diffstat (limited to 'src/plugins/http/http.c')
-rw-r--r-- | src/plugins/http/http.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/plugins/http/http.c b/src/plugins/http/http.c index 9cd1382aaa3..d404e734d48 100644 --- a/src/plugins/http/http.c +++ b/src/plugins/http/http.c @@ -779,7 +779,9 @@ state_cln_wait_method (http_conn_t *hc, transport_send_params_t *sp) } app_wrk = app_worker_get_if_valid (as->app_wrk_index); - app_worker_rx_notify (app_wrk, as); + if (app_wrk) + app_worker_rx_notify (app_wrk, as); + return HTTP_SM_STOP; } |