]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
[BZ #2764]
authorUlrich Drepper <drepper@redhat.com>
Mon, 14 Aug 2006 03:59:19 +0000 (03:59 +0000)
committerUlrich Drepper <drepper@redhat.com>
Mon, 14 Aug 2006 03:59:19 +0000 (03:59 +0000)
2006-08-13  Ulrich Drepper  <drepper@redhat.com>
[BZ #2764]
* login/utmpname.c (__utmpname): Remove unnecessary test.

ChangeLog
login/utmpname.c

index da2794efc98169f87a64e92e9e287510fe83c5c5..7c4cc0c54a2aec0f50a31bfef52f86f39265757b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2006-08-13  Ulrich Drepper  <drepper@redhat.com>
+
+       [BZ #2764]
+       * login/utmpname.c (__utmpname): Remove unnecessary test.
+
 2006-06-08  Joseph Myers  <jsm28@gcc.gnu.org>
 
        [BZ #2832]
index 875dbd59732aeb0c5ea28a61a7c2244ded28b8f4..24ed7f3c46fb152d643f45e3e72cac5bcc2329c8 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1997, 2002 Free Software Foundation, Inc.
+/* Copyright (C) 1997, 2002, 2006 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Mark Kettenis <kettenis@phys.uva.nl>, 1997.
 
@@ -50,8 +50,7 @@ __utmpname (const char *file)
     {
       if (strcmp (file, default_file_name) == 0)
        {
-         if (__libc_utmp_file_name != default_file_name)
-           free ((char *) __libc_utmp_file_name);
+         free ((char *) __libc_utmp_file_name);
 
          __libc_utmp_file_name = default_file_name;
        }