2006-08-13  Ulrich Drepper  <drepper@redhat.com>
	[BZ #2764]
	* login/utmpname.c (__utmpname): Remove unnecessary test.
This commit is contained in:
Ulrich Drepper 2006-08-14 03:59:19 +00:00
parent 022b51af62
commit fa3ac53fd9
2 changed files with 7 additions and 3 deletions

View File

@ -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]

View 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;
}