about summary refs log tree commit diff
path: root/Src
diff options
context:
space:
mode:
authorMikael Magnusson <mikachu@gmail.com>2015-01-06 02:09:35 +0100
committerMikael Magnusson <mikachu@gmail.com>2015-01-06 23:51:18 +0100
commit4701b05cf760fddeee4b203f04130540f2d903a8 (patch)
treec1cee771e40ac79f35eeb7938e4b58ac7fc191a5 /Src
parent38dc59907b50f1717b3634ab3a99499a52819e3f (diff)
downloadzsh-4701b05cf760fddeee4b203f04130540f2d903a8.tar.gz
zsh-4701b05cf760fddeee4b203f04130540f2d903a8.tar.xz
zsh-4701b05cf760fddeee4b203f04130540f2d903a8.zip
34138: wcs_nicechar: only deref widthp if it was given
Diffstat (limited to 'Src')
-rw-r--r--Src/utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Src/utils.c b/Src/utils.c
index 72a0c9c1f..f8d239458 100644
--- a/Src/utils.c
+++ b/Src/utils.c
@@ -566,7 +566,7 @@ wcs_nicechar(wchar_t c, size_t *widthp, char **swidep)
 	    return buf;
 	}
 	if (swidep)
-	    *swidep = buf + *widthp;
+	    *swidep = widthp ? buf + *widthp : buf;
 	return buf;
     }