about summary refs log tree commit diff
path: root/malloc/mcheck.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2000-03-27 06:37:56 +0000
committerUlrich Drepper <drepper@redhat.com>2000-03-27 06:37:56 +0000
commit30e0f9c39978e52aefbcc54ef69efb439ea20ff5 (patch)
tree0543ba4606d2770e48769952db6a604f424c6945 /malloc/mcheck.c
parent8e605e789df868763e388dca7040538c1de41b85 (diff)
downloadglibc-30e0f9c39978e52aefbcc54ef69efb439ea20ff5.tar.gz
glibc-30e0f9c39978e52aefbcc54ef69efb439ea20ff5.tar.xz
glibc-30e0f9c39978e52aefbcc54ef69efb439ea20ff5.zip
Update.
	* locale/programs/localedef.c (construct_output_path): If path
	contains a / compute the end of the directory name correctly.
Diffstat (limited to 'malloc/mcheck.c')
-rw-r--r--malloc/mcheck.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/malloc/mcheck.c b/malloc/mcheck.c
index 42e8e71174..0d32fc17f7 100644
--- a/malloc/mcheck.c
+++ b/malloc/mcheck.c
@@ -111,12 +111,18 @@ check_all ()
      with.  */
   struct hdr *runp = root;
 
+  /* Temporarily turn off the checks.  */
+  pedantic = 0;
+
   while (runp != NULL)
     {
       (void) checkhdr (runp);
 
       runp = runp->next;
     }
+
+  /* Turn checks on again.  */
+  pedantic = 1;
 }
 
 static void unlink_blk __P ((struct hdr *ptr));