mirror of
git://git.musl-libc.org/musl
synced 2024-12-26 08:32:26 +00:00
fix invalid %m format crash in wide scanf variants
the wide variant was missed in the previous commit.
This commit is contained in:
parent
cbb8a69790
commit
f0328a5656
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user