diff options
author | Stefan Esser <sesser@php.net> | 2002-06-21 14:47:59 +0000 |
---|---|---|
committer | Stefan Esser <sesser@php.net> | 2002-06-21 14:47:59 +0000 |
commit | 44a5b43b79bb407002b82156ecb4995e20c349fd (patch) | |
tree | 25ba8c8826478c127fa4861d7f07750744d0fe11 /sapi/apache/mod_php4.c | |
parent | 2203ef1979571be330b14d2f31689eb7bea24830 (diff) | |
download | php-git-44a5b43b79bb407002b82156ecb4995e20c349fd.tar.gz |
Fixing the same possible memory leak.
Diffstat (limited to 'sapi/apache/mod_php4.c')
-rw-r--r-- | sapi/apache/mod_php4.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sapi/apache/mod_php4.c b/sapi/apache/mod_php4.c index 690a7c3c8d..3aaa6bafb9 100644 --- a/sapi/apache/mod_php4.c +++ b/sapi/apache/mod_php4.c @@ -163,6 +163,7 @@ int sapi_apache_header_handler(sapi_header_struct *sapi_header, sapi_headers_str header_content = p = strchr(header_name, ':'); if (!p) { + efree(sapi_header->header); return 0; } |