From: Ulrich Drepper Date: Sat, 15 Sep 2007 22:21:19 +0000 (+0000) Subject: Reset digit to 0 for inputs starting with "0x". X-Git-Tag: upstream/2.30~14685 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=444897ec5052e1969c25bdbded462c1a337b9730;p=external%2Fglibc.git Reset digit to 0 for inputs starting with "0x". --- diff --git a/inet/inet_net.c b/inet/inet_net.c index e9331c5..d58f1ae 100644 --- a/inet/inet_net.c +++ b/inet/inet_net.c @@ -55,7 +55,7 @@ again: if (*cp == '0') digit = 1, base = 8, cp++; if (*cp == 'x' || *cp == 'X') - base = 16, cp++; + digit = 0, base = 16, cp++; while ((c = *cp) != 0) { if (isdigit(c)) { if (base == 8 && (c == '8' || c == '9'))