commit a12e95aa4f4bd26d33190a08f9a4ef6662bd28dd from: Omar Polo date: Fri Sep 30 10:55:14 2022 UTC typo; continue instead of break if fcgi_abort_request fails the `fcgi' pointer is no longer valid, but we may still have to cleanup other inflight fcgi connections. commit - 246017d40d92c772b139e2341a8ebb0bc0e60e56 commit + a12e95aa4f4bd26d33190a08f9a4ef6662bd28dd blob - 4aca0b93590847907be0c7d7583547ea31760efb blob + 34ef816d6f07f0858ff822a27cced81843163593 --- config.c +++ config.c @@ -73,7 +73,7 @@ config_purge(struct galileo *env) } if (fcgi == NULL) - break; + continue; SPLAY_REMOVE(fcgi_tree, &env->sc_fcgi_socks, fcgi); fcgi_free(fcgi);