From edac2587515fdb202663fc9ffc6b527d7a6da907 Mon Sep 17 00:00:00 2001 From: Moriyoshi Koizumi Date: Wed, 7 May 2003 14:11:58 +0000 Subject: [PATCH] Possible fix for bug #23455 (patch by rrichards@digarc.com) --- sapi/apache2handler/sapi_apache2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sapi/apache2handler/sapi_apache2.c b/sapi/apache2handler/sapi_apache2.c index 08f5a84d9d..0abd1e20b3 100644 --- a/sapi/apache2handler/sapi_apache2.c +++ b/sapi/apache2handler/sapi_apache2.c @@ -416,7 +416,7 @@ static void php_apache_request_ctor(request_rec *r, php_struct *ctx TSRMLS_DC) r->no_local_copy = 1; content_type = sapi_get_default_content_type(TSRMLS_C); - ap_set_content_type(r, apr_pstrdup(r->pool, sapi_get_default_content_type(TSRMLS_C))); + ap_set_content_type(r, apr_pstrdup(r->pool, content_type)); efree(content_type); apr_table_unset(r->headers_out, "Content-Length"); -- 2.50.1