Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
SUSE:SLE-12-SP1:GA
apache2.6987
httpd-2.4.x-check_null_pointer_dereference.patch
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File httpd-2.4.x-check_null_pointer_dereference.patch of Package apache2.6987
Index: httpd-2.4.10/CHANGES =================================================================== --- httpd-2.4.10.orig/CHANGES +++ httpd-2.4.10/CHANGES @@ -1,6 +1,9 @@ -*- coding: utf-8 -*- Changes with Apache 2.4.10 + *) SECURITY: CVE-2014-3581 (cve.mitre.org) + mod_cache: Avoid a crash when Content-Type has an empty value. PR56924. + [Mark Montague <mark catseye.org>, Jan Kaluza] *) Add HttpContentLengthHeadZero and HttpExpectStrict directives. [Yehuda Sadeh <yehuda inktank com>, Justin Erenkrantz] Index: httpd-2.4.10/modules/cache/cache_util.c =================================================================== --- httpd-2.4.10.orig/modules/cache/cache_util.c +++ httpd-2.4.10/modules/cache/cache_util.c @@ -1258,8 +1258,10 @@ apr_table_t *cache_merge_headers_out(req if (r->content_type && !apr_table_get(headers_out, "Content-Type")) { - apr_table_setn(headers_out, "Content-Type", - ap_make_content_type(r, r->content_type)); + const char *ctype = ap_make_content_type(r, r->content_type); + if (ctype) { + apr_table_setn(headers_out, "Content-Type", ctype); + } } if (r->content_encoding
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor