summaryrefslogtreecommitdiff
path: root/sapi/isapi/php4isapi.c
diff options
context:
space:
mode:
authorBen Mansell <joosters@php.net>2000-08-17 13:40:40 +0000
committerBen Mansell <joosters@php.net>2000-08-17 13:40:40 +0000
commit8751bcb8ebeb47575360627fff3e50b847dfc637 (patch)
tree0fc31c1da7ed831b752ebf316dfa496c99145acd /sapi/isapi/php4isapi.c
parent7c7e5a90813df8eaa124744fe6afb9439fcf5b2c (diff)
downloadphp-git-8751bcb8ebeb47575360627fff3e50b847dfc637.tar.gz
(send_headers) Removed code freeing http_status_line, this is performed
in sapi_send_headers() # Looks like a similar problem in sapi/pi3web/pi3web_sapi.c as well. # I can't test this though, so I'm being paranoid and not changing that code. # Could someone please check this?
Diffstat (limited to 'sapi/isapi/php4isapi.c')
-rw-r--r--sapi/isapi/php4isapi.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/sapi/isapi/php4isapi.c b/sapi/isapi/php4isapi.c
index 6943ff2074..fdf99c5a8b 100644
--- a/sapi/isapi/php4isapi.c
+++ b/sapi/isapi/php4isapi.c
@@ -232,9 +232,6 @@ static int sapi_isapi_send_headers(sapi_headers_struct *sapi_headers SLS_DC)
lpECB->ServerSupportFunction(lpECB->ConnID, HSE_REQ_SEND_RESPONSE_HEADER_EX, &header_info, NULL, NULL);
efree(combined_headers);
- if (SG(sapi_headers).http_status_line) {
- efree(SG(sapi_headers).http_status_line);
- }
return SAPI_HEADER_SENT_SUCCESSFULLY;
}