- fix possible coredump for nodelist-entrys with more than 8 flags

This commit is contained in:
Dirk Meyer 2001-07-16 18:28:55 +00:00
parent 7c9b5a5b72
commit ac3e2a0743
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=45171
2 changed files with 23 additions and 0 deletions

View file

@ -7,6 +7,7 @@
PORTNAME= ifmail
PORTVERSION= 2.15
PORTREVISION= 1
CATEGORIES= news
MASTER_SITES= ${MASTER_SITE_SUNSITE} \
ftp://ftp.average.org/ifmail/

View file

@ -0,0 +1,22 @@
--- ifcico/nodelist.c.orig Sat Oct 4 11:21:44 1997
+++ ifcico/nodelist.c Mon Jul 16 20:24:13 2001
@@ -207,7 +207,7 @@
debug(20,"getnlent: phone %s",nodebuf.phone);
debug(20,"getnlent: speed %u",nodebuf.speed);
debug(20,"getnlent: flags 0x%lx",nodebuf.flags);
- for (j=0;nodebuf.uflags[j];j++)
+ for (j=0; (j < MAXUFLAGS) && nodebuf.uflags[j];j++)
debug(20,"getnlent: uflag %s",nodebuf.uflags[j]);
return &nodebuf;
--- ifcico/nodelist.h.orig Sat Oct 29 12:19:33 1994
+++ ifcico/nodelist.h Sun Jul 1 10:57:18 2001
@@ -3,7 +3,7 @@
#include "ftn.h"
-#define MAXUFLAGS 8
+#define MAXUFLAGS 16
typedef struct _node {
faddr addr;