mirror of
https://git.musl-libc.org/git/musl
synced 2025-02-23 13:44:11 +03:00
fix uninitialized var in vfwprintf printing 0-prec string
this could lead to spurious failures of wide printf functions
This commit is contained in:
parent
f0b85fd926
commit
db4096c5f2
@ -292,7 +292,7 @@ static int wprintf_core(FILE *f, const wchar_t *fmt, va_list *ap, union arg *nl_
|
|||||||
case 's':
|
case 's':
|
||||||
bs = arg.p;
|
bs = arg.p;
|
||||||
if (p<0) p = INT_MAX;
|
if (p<0) p = INT_MAX;
|
||||||
for (l=0; l<p && (i=mbtowc(&wc, bs, MB_LEN_MAX))>0; bs+=i, l++);
|
for (i=l=0; l<p && (i=mbtowc(&wc, bs, MB_LEN_MAX))>0; bs+=i, l++);
|
||||||
if (i<0) return -1;
|
if (i<0) return -1;
|
||||||
p=l;
|
p=l;
|
||||||
if (w<p) w=p;
|
if (w<p) w=p;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user