]> granicus.if.org Git - apache/commitdiff
remove useless post increment.
authorAndré Malo <nd@apache.org>
Thu, 24 Jul 2003 20:50:50 +0000 (20:50 +0000)
committerAndré Malo <nd@apache.org>
Thu, 24 Jul 2003 20:50:50 +0000 (20:50 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100776 13f79535-47bb-0310-9956-ffa450edef68

modules/mappers/mod_rewrite.c

index bda97786f1c8d8b5e1e01afff0e602de87f2925a..42143d0bfd944bc63dcf108a7e9ab9cda7045912 100644 (file)
@@ -4345,7 +4345,7 @@ static int parseargline(char *str, char **a1, char **a2, char **a3)
     CHECK_QUOTATION(cp, isquoted);
     *a3 = cp;
     DETERMINE_NEXTSTRING(cp, isquoted);
-    *cp++ = '\0';
+    *cp = '\0';
 
     return 0;
 }