From: André Malo Date: Thu, 24 Jul 2003 20:50:50 +0000 (+0000) Subject: remove useless post increment. X-Git-Tag: pre_ajp_proxy~1368 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3ca16bbc4c3ecc48d3220aa43f48f1fc5d2bdd7a;p=apache remove useless post increment. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100776 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/mappers/mod_rewrite.c b/modules/mappers/mod_rewrite.c index bda97786f1..42143d0bfd 100644 --- a/modules/mappers/mod_rewrite.c +++ b/modules/mappers/mod_rewrite.c @@ -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; }