From: Brian Pane Date: Sun, 15 Dec 2002 16:37:19 +0000 (+0000) Subject: don't segfault in mod_mime's find_ct() if we get there without having set r->filename X-Git-Tag: pre_ajp_proxy~2428 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=33fa28e38a72da8feb89419fa6e2029a95a9aacf;p=apache don't segfault in mod_mime's find_ct() if we get there without having set r->filename git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@97924 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/CHANGES b/CHANGES index e5fc359643..c54a717631 100644 --- a/CHANGES +++ b/CHANGES @@ -2,6 +2,9 @@ Changes with Apache 2.1.0-dev [Remove entries to the current 2.0 section below, when backported] + *) mod_mime: Workaround to prevent a segfault if r->filename=NULL + [Brian Pane] + *) Added character set support to mod_auth_LDAP to allow it to convert extended characters used in the user ID to UTF-8 before authenticating against the LDAP directory. The new diff --git a/modules/http/mod_mime.c b/modules/http/mod_mime.c index e91cdf9872..eecd8d1ac7 100644 --- a/modules/http/mod_mime.c +++ b/modules/http/mod_mime.c @@ -790,6 +790,10 @@ static int find_ct(request_rec *r) return OK; } + if (!r->filename) { + return DECLINED; + } + conf = (mime_dir_config *)ap_get_module_config(r->per_dir_config, &mime_module); exception_list = apr_array_make(r->pool, 2, sizeof(char *));