41a6c3
--- a/modules/http/mod_mime.c  2017/06/05 12:10:05 1797652
41a6c3
+++ b/modules/http/mod_mime.c  2017/06/05 12:12:31 1797653
41a6c3
@@ -528,9 +528,9 @@
41a6c3
     int res = -1;
41a6c3
     int c;
41a6c3
 
41a6c3
-    if (((s + 1) != NULL) && (*s == '\\')) {
41a6c3
+    if (*s == '\\') {
41a6c3
         c = (int) *(s + 1);
41a6c3
-        if (apr_isascii(c)) {
41a6c3
+        if (c && apr_isascii(c)) {
41a6c3
             res = 1;
41a6c3
         }
41a6c3
     }