From: Thies C. Arntzen Date: Fri, 25 Feb 2000 10:10:43 +0000 (+0000) Subject: fix obvious crash. X-Git-Tag: PHP-4.0-RC1~418 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=83d20ab305ec14f0a02d6889b2f96fb298be7277;p=php fix obvious crash. stig, in sgi-mode i still "only" get: (haven't touched my .ini file in ages - and don't plan to) X-Powered-By: PHP/4.0b5-dev Content-type: iso-8859-1 <<< where is text/html? --- diff --git a/main/SAPI.c b/main/SAPI.c index 7de50cb951..f409583160 100644 --- a/main/SAPI.c +++ b/main/SAPI.c @@ -389,6 +389,7 @@ SAPI_API int sapi_send_headers() sapi_header_struct default_header; int len = SG(sapi_headers).default_content_type_size + sizeof("Content-type: "); + default_header.header = emalloc(len); strcpy(default_header.header, "Content-type: "); strlcat(default_header.header, SG(sapi_headers).default_content_type, len); default_header.header[len - 1] = '\0';