From: Sterling Hughes Date: Fri, 26 Oct 2001 11:17:34 +0000 (+0000) Subject: no need to free these it seems X-Git-Tag: POST_PARAMETER_PARSING_API~11 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e967627ad6aa7fab78b4b0b043869ec02fd93027;p=php no need to free these it seems --- diff --git a/sapi/servlet/servlet.c b/sapi/servlet/servlet.c index 47644166e1..5e4fdf29e7 100644 --- a/sapi/servlet/servlet.c +++ b/sapi/servlet/servlet.c @@ -390,11 +390,9 @@ JNIEXPORT void JNICALL Java_net_php_servlet_send * Clean up */ - FREESTRING(SG(request_info).request_method); FREESTRING(SG(request_info).query_string); FREESTRING(SG(request_info).request_uri); FREESTRING(SG(request_info).path_translated); - FREESTRING(SG(request_info).content_type); FREESTRING(((servlet_request*)SG(server_context))->cookies); efree(SG(server_context)); SG(server_context)=0;