https://issues.apache.org/bugzilla/show_bug.cgi?id=56924

--- Comment #5 from [email protected] ---
This issue may be impacting Apache 2.2 also. 

cache_merge_headers_out() function is not available in apache 2.2, but the code
which got corrected(i.e., check return value of ap_make_content_type()) is
present in different function of apache 2.2 as mentioned below. 

http://svn.apache.org/viewvc/httpd/httpd/branches/2.2.x/modules/cache/mod_mem_cache.c?revision=1343951&view=markup
635            apr_table_setn(headers_out, "Content-Type",
636                           ap_make_content_type(r, r->content_type));
637        }

http://svn.apache.org/viewvc/httpd/httpd/branches/2.2.x/modules/cache/mod_disk_cache.c?view=markup
932            if (!apr_table_get(headers_out, "Content-Type")
933                && r->content_type) {
934                apr_table_setn(headers_out, "Content-Type",
935                               ap_make_content_type(r, r->content_type));
936            }

Can someone please confirm this.

-- 
You are receiving this mail because:
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to