diff --git a/ChangeLog b/ChangeLog index 4c104dfb85..41c9982804 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2001-01-08 Ulrich Drepper + * sysdeps/generic/segfault.c (install_handler): Check output file + name with access(). + * resolv/res_query.c: Use simply getenv() for HOSTALIASES. * sysdeps/generic/unsecvars.h (UNSECURE_ENVVARS): Add HOSTALIASES. diff --git a/localedata/ChangeLog b/localedata/ChangeLog index 08c3b49c47..a643772b8e 100644 --- a/localedata/ChangeLog +++ b/localedata/ChangeLog @@ -1,3 +1,8 @@ +2001-01-08 Jakub Jelinek + + * locales/cs_CZ: Fix grammar of comment above abmon. + Reported by Stanislav Brabec . + 2000-12-31 Andreas Jaeger * tst-fmon.c (main): Use return instead of exit to avoid warning. diff --git a/sysdeps/generic/segfault.c b/sysdeps/generic/segfault.c index 24ed3f8308..816e914c0c 100644 --- a/sysdeps/generic/segfault.c +++ b/sysdeps/generic/segfault.c @@ -1,5 +1,5 @@ /* Catch segmentation faults and print backtrace. - Copyright (C) 1998, 1999, 2000 Free Software Foundation, Inc. + Copyright (C) 1998, 1999, 2000, 2001 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. @@ -237,6 +237,6 @@ install_handler (void) /* Preserve the output file name if there is any given. */ name = getenv ("SEGFAULT_OUTPUT_NAME"); - if (name != NULL && name[0] != '\0') + if (name != NULL && name[0] != '\0' && __access (name, R_OK | W_OK) == 0) fname = __strdup (name); }