1
0
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:
Andreas Jaeger
2001-03-04 17:11:25 +00:00
parent 1746f2b0a1
commit 82a7bfdb12
2 changed files with 2 additions and 1 deletions

View File

@ -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;