mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-30 22:43:12 +03:00
2004-06-14 Jakub Jelinek <jakub@redhat.com> [BZ #219] * nss/nsswitch.c (free_mem): Don't try to close a library handle if the handle is invalid. Patch by David Kimdon <kimdon@esrf.fr>. 2004-06-11 Dmitry V. Levin <ldv@altlinux.org> [BZ #217] * debug/xtrace.sh: Fix typo in error diagnostics.
This commit is contained in:
11
ChangeLog
11
ChangeLog
@ -1,3 +1,14 @@
|
|||||||
|
2004-06-14 Jakub Jelinek <jakub@redhat.com>
|
||||||
|
|
||||||
|
[BZ #219]
|
||||||
|
* nss/nsswitch.c (free_mem): Don't try to close a library handle
|
||||||
|
if the handle is invalid. Patch by David Kimdon <kimdon@esrf.fr>.
|
||||||
|
|
||||||
|
2004-06-11 Dmitry V. Levin <ldv@altlinux.org>
|
||||||
|
|
||||||
|
[BZ #217]
|
||||||
|
* debug/xtrace.sh: Fix typo in error diagnostics.
|
||||||
|
|
||||||
2004-06-14 Andreas Schwab <schwab@suse.de>
|
2004-06-14 Andreas Schwab <schwab@suse.de>
|
||||||
|
|
||||||
* stdio-common/psignal.c (psignal): Don't use BUF when asprintf
|
* stdio-common/psignal.c (psignal): Don't use BUF when asprintf
|
||||||
|
@ -143,7 +143,7 @@ fi
|
|||||||
program=$1
|
program=$1
|
||||||
shift
|
shift
|
||||||
if test ! -f "$program"; then
|
if test ! -f "$program"; then
|
||||||
printf >2& $"executable \`$program' not found\n"
|
printf >&2 $"executable \`$program' not found\n"
|
||||||
help_info
|
help_info
|
||||||
fi
|
fi
|
||||||
if test ! -x "$program"; then
|
if test ! -x "$program"; then
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
/* Copyright (C) 1996-1999,2001,2002,2003 Free Software Foundation, Inc.
|
/* Copyright (C) 1996, 1997, 1998, 1999, 2001, 2002, 2003, 2004
|
||||||
|
Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1996.
|
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1996.
|
||||||
|
|
||||||
@ -749,6 +750,7 @@ libc_freeres_fn (free_mem)
|
|||||||
{
|
{
|
||||||
service_library *oldl = library;
|
service_library *oldl = library;
|
||||||
|
|
||||||
|
if (library->lib_handle && library->lib_handle != (void *) -1l)
|
||||||
__libc_dlclose (library->lib_handle);
|
__libc_dlclose (library->lib_handle);
|
||||||
|
|
||||||
library = library->next;
|
library = library->next;
|
||||||
|
Reference in New Issue
Block a user