From: Michael Wallner Date: Mon, 13 Jun 2005 16:38:34 +0000 (+0000) Subject: - hossa - missed to clean the llist at rshutdown X-Git-Tag: RELEASE_0_9_0~27 X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=commitdiff_plain;h=27a97b116661d33cf46e79640652e901f356c6ce - hossa - missed to clean the llist at rshutdown --- diff --git a/http.c b/http.c index 62f86ab..2901a88 100644 --- a/http.c +++ b/http.c @@ -148,6 +148,7 @@ static inline void http_globals_free(zend_http_globals *G) zend_hash_destroy(&G->request.methods.custom); zend_llist_clean(&G->request.copies.strings); zend_llist_clean(&G->request.copies.slists); + zend_llist_clean(&G->request.copies.contexts); } /* }}} */