diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2016-08-29 12:20:58 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2016-08-29 12:20:58 +0000 |
commit | c878381460c2bcaf31e89fddc94b2cd8911564b4 (patch) | |
tree | ec47de28c1c8085f314bc554a0cf6e26a2021653 | |
parent | a8ce86e8d642a1e1cfdf4b164e02edc70bd40993 (diff) |
Store the return value of mbrtowc() in a size_t, not int.
OK schwarze@
-rw-r--r-- | lib/libc/stdio/vfprintf.c | 28 |
1 files changed, 15 insertions, 13 deletions
diff --git a/lib/libc/stdio/vfprintf.c b/lib/libc/stdio/vfprintf.c index 49fa61af607..7d8ccea9e3c 100644 --- a/lib/libc/stdio/vfprintf.c +++ b/lib/libc/stdio/vfprintf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vfprintf.c,v 1.76 2016/08/27 16:10:40 millert Exp $ */ +/* $OpenBSD: vfprintf.c,v 1.77 2016/08/29 12:20:57 millert Exp $ */ /*- * Copyright (c) 1990 The Regents of the University of California. * All rights reserved. @@ -489,17 +489,17 @@ __vfprintf(FILE *fp, const char *fmt0, __va_list ap) size_t len; cp = fmt; - while ((n = mbrtowc(&wc, fmt, MB_CUR_MAX, &ps)) > 0) { - fmt += n; + while ((len = mbrtowc(&wc, fmt, MB_CUR_MAX, &ps)) != 0) { + if (len == (size_t)-1 || len == (size_t)-2) { + ret = -1; + goto error; + } + fmt += len; if (wc == '%') { fmt--; break; } } - if (n < 0) { - ret = -1; - goto error; - } if (fmt != cp) { ptrdiff_t m = fmt - cp; if (m < 0 || m > INT_MAX - ret) @@ -507,7 +507,7 @@ __vfprintf(FILE *fp, const char *fmt0, __va_list ap) PRINT(cp, m); ret += m; } - if (n == 0) + if (len == 0) goto done; fmt++; /* skip over '%' */ @@ -1217,17 +1217,19 @@ __find_arguments(const char *fmt0, va_list ap, union arg **argtable, * Scan the format for conversions (`%' character). */ for (;;) { + size_t len; + cp = fmt; - while ((n = mbrtowc(&wc, fmt, MB_CUR_MAX, &ps)) > 0) { - fmt += n; + while ((len = mbrtowc(&wc, fmt, MB_CUR_MAX, &ps)) != 0) { + if (len == (size_t)-1 || len == (size_t)-2) + return (-1); + fmt += len; if (wc == '%') { fmt--; break; } } - if (n < 0) - return (-1); - if (n == 0) + if (len == 0) goto done; fmt++; /* skip over '%' */ |