From: Ulrich Drepper Date: Wed, 31 Jan 2007 03:18:03 +0000 (+0000) Subject: * misc/hsearch_r.c (hdestroy_r): Remove unnecessary test. X-Git-Tag: cvs/fedora-glibc-20070202T0923~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ee3142006a497a5216aef39ea8277a1c313b9747;p=thirdparty%2Fglibc.git * misc/hsearch_r.c (hdestroy_r): Remove unnecessary test. --- diff --git a/ChangeLog b/ChangeLog index f97493c1a54..dff9ca56ba7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2007-01-30 Ulrich Drepper + + * misc/hsearch_r.c (hdestroy_r): Remove unnecessary test. + 2007-01-26 Ulrich Drepper * sysdeps/i386/dl-trampoline.S (_dl_runtime_profile): Use register diff --git a/misc/hsearch_r.c b/misc/hsearch_r.c index b03c12ce0bb..cb4d67466b6 100644 --- a/misc/hsearch_r.c +++ b/misc/hsearch_r.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993,1995,1996,1997,2002,2005 Free Software Foundation, Inc. +/* Copyright (C) 1993,1995-1997,2002,2005,2007 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1993. @@ -110,9 +110,8 @@ hdestroy_r (htab) return; } - if (htab->table != NULL) - /* free used memory */ - free (htab->table); + /* Free used memory. */ + free (htab->table); /* the sign for an existing table is an value != NULL in htable */ htab->table = NULL;