mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-30 22:43:12 +03:00
* resolv/tst-aton.c: Add testcase for IP with four points.
* resolv/inet_addr.c: Don't recognize an IP with four points. Patch by Andre' Breiler <A.Breiler@gmx.net>.
This commit is contained in:
@ -183,7 +183,7 @@ __inet_aton(const char *cp, struct in_addr *addr) {
|
||||
* a.b.c (with c treated as 16 bits)
|
||||
* a.b (with b treated as 24 bits)
|
||||
*/
|
||||
if (pp > res.bytes + 3 || val > 0xff)
|
||||
if (pp > res.bytes + 2 || val > 0xff)
|
||||
goto ret_0;
|
||||
*pp++ = val;
|
||||
c = *++cp;
|
||||
|
Reference in New Issue
Block a user