From: Brian Pane Date: Sun, 12 May 2002 03:59:31 +0000 (+0000) Subject: Remove an extraneous loop condition X-Git-Tag: 2.0.37~429 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=32c16646d1f112d3a5278b8e5701ab66bcddba70;p=apache Remove an extraneous loop condition git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95045 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/http/mod_mime.c b/modules/http/mod_mime.c index d7ae93e267..0fb268bed4 100644 --- a/modules/http/mod_mime.c +++ b/modules/http/mod_mime.c @@ -554,7 +554,7 @@ static content_type *analyze_ct(request_rec *r, const char *s) /* getting a type */ cp = mp; - while (cp && apr_isspace(*cp)) { + while (apr_isspace(*cp)) { cp++; } if (!*cp) {