fix over-read in %ls with non-wide scanf

This commit is contained in:
Rich Felker
2012-04-17 22:41:38 -04:00
parent 9ab180fa57
commit 2dd5dc78d4

View File

@ -312,6 +312,7 @@ int vfscanf(FILE *f, const char *fmt, va_list ap)
if (readwc(c, &wcs, &st) < 0)
goto input_fail;
}
shunget(f);
if (!mbsinit(&st)) goto input_fail;
if (dest) *wcs++ = 0;
break;