svn commit: r327238 - in stable: 10/lib/libc/net 11/lib/libc/net

Hajimu UMEMOTO ume at FreeBSD.org
Wed Dec 27 14:50:09 UTC 2017


Author: ume
Date: Wed Dec 27 14:50:07 2017
New Revision: 327238
URL: https://svnweb.freebsd.org/changeset/base/327238

Log:
  MFC r327029:
  	Don't ignore trailing spaces after numerical IP addresses.
  
  PR:		224403

Modified:
  stable/10/lib/libc/net/getaddrinfo.c
Directory Properties:
  stable/10/   (props changed)

Changes in other areas also in this revision:
Modified:
  stable/11/lib/libc/net/getaddrinfo.c
Directory Properties:
  stable/11/   (props changed)

Modified: stable/10/lib/libc/net/getaddrinfo.c
==============================================================================
--- stable/10/lib/libc/net/getaddrinfo.c	Wed Dec 27 09:25:45 2017	(r327237)
+++ stable/10/lib/libc/net/getaddrinfo.c	Wed Dec 27 14:50:07 2017	(r327238)
@@ -1243,7 +1243,8 @@ explore_numeric(const struct addrinfo *pai, const char
 		 * does not accept.  So we need to separate the case for
 		 * AF_INET.
 		 */
-		if (inet_aton(hostname, (struct in_addr *)pton) != 1)
+		if (inet_aton(hostname, (struct in_addr *)pton) != 1 ||
+		    hostname[strspn(hostname, "0123456789.xabcdefXABCDEF")] != '\0')
 			return 0;
 		break;
 	default:


More information about the svn-src-all mailing list