mirror of
git://slackware.nl/current.git
synced 2024-12-27 09:59:16 +01:00
14 lines
503 B
Diff
14 lines
503 B
Diff
|
diff -up bsd-finger-0.17/finger/util.c.match_sigsegv bsd-finger-0.17/finger/util.c
|
||
|
--- bsd-finger-0.17/finger/util.c.match_sigsegv 2012-10-16 10:22:26.240480338 +0200
|
||
|
+++ bsd-finger-0.17/finger/util.c 2012-10-16 10:26:15.744072682 +0200
|
||
|
@@ -186,6 +186,9 @@ match(struct passwd *pw, const char *use
|
||
|
int i, j, ct, rv=0;
|
||
|
char *rname;
|
||
|
|
||
|
+ if (pw == NULL || pw->pw_gecos == NULL)
|
||
|
+ return 0;
|
||
|
+
|
||
|
strncpy(tbuf, pw->pw_gecos, TBUFLEN);
|
||
|
tbuf[TBUFLEN-1] = 0; /* guarantee null termination */
|
||
|
p = tbuf;
|