[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 da2794e..7c4cc0c 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 875dbd5..24ed7f3 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;
        }