1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-09-08 12:01:21 +02:00

cf. 36554: remove unnecessary pointer dereference

This commit is contained in:
Barton E. Schaefer 2015-09-19 09:34:05 -07:00
parent 18d82a6c40
commit 07796811b0

View file

@ -5389,7 +5389,7 @@ quotestring(const char *s, char **e, int instring)
* it is placeholding for the empty string? * it is placeholding for the empty string?
*/ */
if (inull(*u)) if (inull(*u))
*u++; u++;
/* /*
* As we test for printability here we need to be able * As we test for printability here we need to be able
* to look for multibyte characters. * to look for multibyte characters.