- update test files
[m6w6/ext-http] / http.c
diff --git a/http.c b/http.c
index b50682fa8d33ac370d457b50e121acf63b0bdc12..05f448f560008ddcf754c9b4c5088aca722b7ff0 100644 (file)
--- a/http.c
+++ b/http.c
@@ -199,8 +199,17 @@ static inline void _http_globals_init(zend_http_globals *G TSRMLS_DC)
 #define http_globals_free(g) _http_globals_free((g) TSRMLS_CC)
 static inline void _http_globals_free(zend_http_globals *G TSRMLS_DC)
 {
+       if (G->request.headers) {
+               zend_hash_destroy(G->request.headers);
+               FREE_HASHTABLE(G->request.headers);
+               G->request.headers = NULL;
+       }
        STR_SET(G->send.content_type, NULL);
        STR_SET(G->send.unquoted_etag, NULL);
+       if (G->server_var) {
+               zval_ptr_dtor(&G->server_var);
+               G->server_var = NULL;
+       }
 }
 /* }}} */