From f121e72ac7e8eb4677dd5c8864c61d347a8c61df Mon Sep 17 00:00:00 2001 From: Rasmus Lerdorf Date: Sat, 8 Nov 2008 22:56:17 +0000 Subject: [PATCH] Fix for bug #46525 --- sapi/cgi/cgi_main.c | 1 + 1 file changed, 1 insertion(+) diff --git a/sapi/cgi/cgi_main.c b/sapi/cgi/cgi_main.c index c893643250..f706f86040 100644 --- a/sapi/cgi/cgi_main.c +++ b/sapi/cgi/cgi_main.c @@ -454,6 +454,7 @@ static int sapi_cgi_send_headers(sapi_headers_struct *sapi_headers TSRMLS_DC) } } else if (response_status == 304 && h->header_len > sizeof("Content-Type:")-1 && strncasecmp(h->header, "Content-Type:", sizeof("Content-Type:")-1) == 0) { + h = (sapi_header_struct*)zend_llist_get_next_ex(&sapi_headers->headers, &pos); continue; } else { PHPWRITE_H(h->header, h->header_len); -- 2.50.1