diff options
author | Jakub Jelinek <jakub@redhat.com> | 2007-02-02 09:48:26 +0000 |
---|---|---|
committer | Jakub Jelinek <jakub@redhat.com> | 2007-02-02 09:48:26 +0000 |
commit | ce28a8ab09cdd49890261d37b5b9280131d18014 (patch) | |
tree | c8ba4212f852ffa7ae3aaf87b3a316612e2c401b /misc | |
parent | a544f6724f8a668e4e2c4e47b5d8b87a47c67db7 (diff) | |
download | glibc-ce28a8ab09cdd49890261d37b5b9280131d18014.tar glibc-ce28a8ab09cdd49890261d37b5b9280131d18014.tar.gz glibc-ce28a8ab09cdd49890261d37b5b9280131d18014.tar.bz2 glibc-ce28a8ab09cdd49890261d37b5b9280131d18014.zip |
Updated to fedora-glibc-20070202T0923cvs/fedora-glibc-2_5_90-16
Diffstat (limited to 'misc')
-rw-r--r-- | misc/hsearch_r.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/misc/hsearch_r.c b/misc/hsearch_r.c index b03c12ce0b..cb4d67466b 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 <drepper@gnu.ai.mit.edu>, 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; |