summaryrefslogtreecommitdiff
path: root/loginrec.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2004-09-12 15:26:00 +1000
committerDamien Miller <djm@mindrot.org>2004-09-12 15:26:00 +1000
commitb0aae333fdecf769da6e693e63d6905713bc0fe6 (patch)
tree9079340599303f79eb8606583e9b2aa2d8d49e7d /loginrec.c
parent6b0279c084f93a1e36ad648fd428297cc728cd35 (diff)
- (djm) [loginrec.c] xmalloc
Diffstat (limited to 'loginrec.c')
-rw-r--r--loginrec.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/loginrec.c b/loginrec.c
index e6b70f58c..25aa29f2f 100644
--- a/loginrec.c
+++ b/loginrec.c
@@ -140,7 +140,7 @@
140# include <libutil.h> 140# include <libutil.h>
141#endif 141#endif
142 142
143RCSID("$Id: loginrec.c,v 1.61 2004/09/12 05:25:17 djm Exp $"); 143RCSID("$Id: loginrec.c,v 1.62 2004/09/12 05:26:01 djm Exp $");
144 144
145/** 145/**
146 ** prototypes for helper functions in this file 146 ** prototypes for helper functions in this file
@@ -1353,10 +1353,7 @@ syslogin_perform_login(struct logininfo *li)
1353{ 1353{
1354 struct utmp *ut; 1354 struct utmp *ut;
1355 1355
1356 if ((ut = (struct utmp *)malloc(sizeof(*ut))) == NULL) { 1356 ut = xmalloc(sizeof(*ut));
1357 logit("%s: couldn't malloc()", __func__);
1358 return (0);
1359 }
1360 construct_utmp(li, ut); 1357 construct_utmp(li, ut);
1361 login(ut); 1358 login(ut);
1362 free(ut); 1359 free(ut);