commit 75be285f4927f1f4a848adddfc4e222964c6d3cb from: Stefan Sperling via: Thomas Adam date: Mon Sep 08 16:29:32 2025 UTC remove unused resp_event variable from gotwebd struct request commit - 8108c9c2404c904b66452df97d5d6e7efaa2e4c5 commit + 75be285f4927f1f4a848adddfc4e222964c6d3cb blob - 469f7d76f548fb2613d0005419bd07a69d05aaa7 blob + 6898ac02358b299591e973e11de6e3084e56b19a --- gotwebd/fcgi.c +++ gotwebd/fcgi.c @@ -626,10 +626,6 @@ fcgi_cleanup_request(struct request *c) template_free(c->tp); if (c->t != NULL) gotweb_free_transport(c->t); - if (c->resp_event) { - event_del(c->resp_event); - free(c->resp_event); - } free(c->buf); free(c->outbuf); free(c); blob - ea05b2dd5577183752beb254d396e4132b4546fb blob + 58211c1296e9a12d3d7be515900874e2cfc64c6c --- gotwebd/gotwebd.h +++ gotwebd/gotwebd.h @@ -298,7 +298,6 @@ struct request { uint16_t id; int fd; int priv_fd[PRIV_FDS__MAX]; - struct event *resp_event; int sock_id; uint32_t request_id; int worker_idx;