From: Ben Laurie Date: Sun, 7 Jan 2001 23:04:15 +0000 (+0000) Subject: Keep Greg happy. X-Git-Tag: APACHE_2_0_BETA_CANDIDATE_1~260 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=778f927c42cf3cd9ccec30133f810e43375862fc;p=apache Keep Greg happy. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87608 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/config.c b/server/config.c index db15655c57..573591c592 100644 --- a/server/config.c +++ b/server/config.c @@ -280,7 +280,7 @@ int ap_invoke_handler(request_rec *r) { const char *handler; const char *p; - size_t handler_len; + char *p2; int result; char hbuf[MAX_STRING_LEN]; @@ -289,14 +289,14 @@ int ap_invoke_handler(request_rec *r) } else { handler = r->content_type ? r->content_type : ap_default_type(r); - if (ap_strchr_c(handler, ';') != NULL) { + if ((p=ap_strchr_c(handler, ';')) != NULL) { apr_cpystrn(hbuf, handler, sizeof hbuf); + p2 = hbuf+(handler-p); handler = hbuf; - p = ap_strchr_c(handler, ';'); /* MIME type arguments */ - while (p > handler && p[-1] == ' ') - --p; /* strip trailing spaces */ - *p='\0'; + while (p2 > handler && p2[-1] == ' ') + --p2; /* strip trailing spaces */ + *p2='\0'; } }