about summary refs log tree commit diff
diff options
context:
space:
mode:
authorBarton E. Schaefer <schaefer@zsh.org>2015-09-19 09:34:05 -0700
committerBarton E. Schaefer <schaefer@zsh.org>2015-09-19 09:34:05 -0700
commit07796811b03f58f2f143cd2860c67c9896c71acb (patch)
tree2784633a1020e8e971c442ae70115c1d5810362b
parent18d82a6c401758e8bd49fef9478168c68d7d2652 (diff)
downloadzsh-07796811b03f58f2f143cd2860c67c9896c71acb.tar.gz
zsh-07796811b03f58f2f143cd2860c67c9896c71acb.tar.xz
zsh-07796811b03f58f2f143cd2860c67c9896c71acb.zip
cf. 36554: remove unnecessary pointer dereference
-rw-r--r--Src/utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Src/utils.c b/Src/utils.c
index d5fd88c00..1de3d9578 100644
--- a/Src/utils.c
+++ b/Src/utils.c
@@ -5389,7 +5389,7 @@ quotestring(const char *s, char **e, int instring)
 	 * it is placeholding for the empty string?
 	 */
 	if (inull(*u))
-	    *u++;
+	    u++;
 	/*
 	 * As we test for printability here we need to be able
 	 * to look for multibyte characters.