fix invalid %m format crash in wide scanf variants

the wide variant was missed in the previous commit.
This commit is contained in:
Rich Felker 2013-08-31 22:52:41 -04:00
parent cbb8a69790
commit f0328a5656

View File

@ -143,6 +143,8 @@ int vfwscanf(FILE *restrict f, const wchar_t *restrict fmt, va_list ap)
}
if (*p=='m') {
wcs = 0;
s = 0;
alloc = !!dest;
p++;
} else {