Import FreeBSD Security Advisories and Errata Notices, as well as their

patches for easier mirroring, to eliminate a special copy, to make
www.freebsd.org/security a full copy of security.freebsd.org and be
eventually be the same.

For now files are just sitting there.   The symlinks are missing.

Discussed on:	www (repository location)
Discussed with:	simon (so)
This commit is contained in:
Bjoern A. Zeeb 2012-08-15 06:19:40 +00:00
parent 01c8718f26
commit 3571e53040
Notes: svn2git 2020-12-08 03:00:23 +00:00
svn path=/head/; revision=39381
1185 changed files with 317546 additions and 0 deletions

View file

@ -0,0 +1,19 @@
Index: lib/libc/inet/inet_network.c
===================================================================
RCS file: /home/ncvs/src/lib/libc/inet/inet_network.c,v
retrieving revision 1.4
diff -u -u -r1.4 inet_network.c
--- lib/libc/inet/inet_network.c 3 Jun 2007 17:20:26 -0000 1.4
+++ lib/libc/inet/inet_network.c 6 Jan 2008 15:38:28 -0000
@@ -82,9 +82,9 @@
}
if (!digit)
return (INADDR_NONE);
+ if (pp >= parts + 4 || val > 0xffU)
+ return (INADDR_NONE);
if (*cp == '.') {
- if (pp >= parts + 4 || val > 0xffU)
- return (INADDR_NONE);
*pp++ = val, cp++;
goto again;
}