Prevent overflow beyond the end of string in wtf_strwidth()

Bug-Debian: https://github.com/tats/w3m/issues/57
This commit is contained in:
Tatsuya Kinoshita
2016-12-08 01:00:42 +09:00
parent 295b1ef8f8
commit a56a8ef132

View File

@@ -120,8 +120,9 @@ int
wtf_strwidth(wc_uchar *p)
{
int w = 0;
wc_uchar *q = p + strlen(p);
while (*p) {
while (p < q) {
w += wtf_width(p);
p += WTF_LEN_MAP[*p];
}