]> granicus.if.org Git - shadow/commitdiff
* libmisc/utmp.c: Use xmalloc() rather than malloc().
authornekral-guest <nekral-guest@5a98b0ae-9ef6-0310-add3-de5d479b70d7>
Wed, 22 Apr 2009 20:59:23 +0000 (20:59 +0000)
committernekral-guest <nekral-guest@5a98b0ae-9ef6-0310-add3-de5d479b70d7>
Wed, 22 Apr 2009 20:59:23 +0000 (20:59 +0000)
ChangeLog
libmisc/utmp.c

index 0a6d4f1e8e03a999c26978331c532b8c2e5474a2..853dc86d08c4a79cad808a729f025d3c7a16a7f0 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2009-04-22  Nicolas François  <nicolas.francois@centraliens.net>
+
+       * libmisc/utmp.c: Use xmalloc() rather than malloc().
+
 2009-04-22  Nicolas François  <nicolas.francois@centraliens.net>
 
        * libmisc/utmp.c: The name returned by ttyame() needs to be copied
index edd381c2c8c007ef19906646df4f2e6329a05bac..75a552faaf4956749492b668e9b096466d43c510 100644 (file)
@@ -123,7 +123,7 @@ struct utmp *get_current_utmp (void)
        }
 
        if (NULL != ut) {
-               ret = malloc (sizeof (*ret));
+               ret = (struct utmp *) xmalloc (sizeof (*ret));
                memcpy (ret, ut, sizeof (*ret));
        }