From 4095f8338d77cad73a8afbf2d4a0d7987e472bab Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Thu, 7 Apr 2011 16:13:47 -0400 Subject: fix broken unsigned comparison in wcstoumax --- src/stdlib/wcstoumax.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/stdlib') diff --git a/src/stdlib/wcstoumax.c b/src/stdlib/wcstoumax.c index 456ddedd..86528ef1 100644 --- a/src/stdlib/wcstoumax.c +++ b/src/stdlib/wcstoumax.c @@ -34,7 +34,7 @@ uintmax_t wcstoumax(const wchar_t *s, wchar_t **p, int base) /* Convert to normal char string so we can use strtoumax */ buf[0] = sign; - if (wcstombs(buf+!!sign, s, sizeof buf-1) < 0) return 0; + if (wcstombs(buf+!!sign, s, sizeof buf-1) == -1) return 0; buf[sizeof buf-1]=0; /* Compute final position */ -- cgit v1.2.1