Module Name:    src
Committed By:   dholland
Date:           Sun Aug 11 16:36:30 UTC 2013

Modified Files:
        src/libexec/getty: subr.c

Log Message:
Don't try to estrdup() NULL; thanks martin@


To generate a diff of this commit:
cvs rdiff -u -r1.34 -r1.35 src/libexec/getty/subr.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/libexec/getty/subr.c
diff -u src/libexec/getty/subr.c:1.34 src/libexec/getty/subr.c:1.35
--- src/libexec/getty/subr.c:1.34	Sun Aug 11 05:42:41 2013
+++ src/libexec/getty/subr.c	Sun Aug 11 16:36:30 2013
@@ -1,4 +1,4 @@
-/*	$NetBSD: subr.c,v 1.34 2013/08/11 05:42:41 dholland Exp $	*/
+/*	$NetBSD: subr.c,v 1.35 2013/08/11 16:36:30 dholland Exp $	*/
 
 /*
  * Copyright (c) 1983, 1993
@@ -34,7 +34,7 @@
 #if 0
 static char sccsid[] = "from: @(#)subr.c	8.1 (Berkeley) 6/4/93";
 #else
-__RCSID("$NetBSD: subr.c,v 1.34 2013/08/11 05:42:41 dholland Exp $");
+__RCSID("$NetBSD: subr.c,v 1.35 2013/08/11 16:36:30 dholland Exp $");
 #endif
 #endif /* not lint */
 
@@ -137,7 +137,7 @@ setdefaults(void)
 
 	for (sp = gettystrs; sp->field; sp++)
 		if (!sp->value)
-			sp->value = estrdup(sp->defalt);
+			sp->value = sp->defalt ? estrdup(sp->defalt) : NULL;
 	for (np = gettynums; np->field; np++)
 		if (!np->set)
 			np->value = np->defalt;

Reply via email to