Update.
authorUlrich Drepper <drepper@redhat.com>
Mon, 8 Jan 2001 18:06:26 +0000 (18:06 +0000)
committerUlrich Drepper <drepper@redhat.com>
Mon, 8 Jan 2001 18:06:26 +0000 (18:06 +0000)
* sysdeps/generic/segfault.c (install_handler): Check output file
name with access().

ChangeLog
localedata/ChangeLog
sysdeps/generic/segfault.c

index 4c104df..41c9982 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2001-01-08  Ulrich Drepper  <drepper@redhat.com>
 
+       * 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.
 
index 08c3b49..a643772 100644 (file)
@@ -1,3 +1,8 @@
+2001-01-08  Jakub Jelinek  <jakub@redhat.com>
+
+       * locales/cs_CZ: Fix grammar of comment above abmon.
+       Reported by Stanislav Brabec <utx@penguin.cz>.
+
 2000-12-31  Andreas Jaeger  <aj@suse.de>
 
        * tst-fmon.c (main): Use return instead of exit to avoid warning.
index 24ed3f8..816e914 100644 (file)
@@ -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 <drepper@cygnus.com>, 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);
 }