From: Christopher Faylor Date: Fri, 5 Oct 2001 04:36:14 +0000 (+0000) Subject: * heap.h (inheap): Check for NULL. X-Git-Tag: cygnus_cvs_20020108_pre~351 X-Git-Url: https://sourceware.org/git/?a=commitdiff_plain;h=f978840beefd9d0ac3fb9a26f5440eb9b20584c9;p=newlib-cygwin.git * heap.h (inheap): Check for NULL. --- diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index d09b8a5c5..a6ee4c4d5 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -1,3 +1,7 @@ +Fri Oct 5 00:31:35 2001 Christopher Faylor + + * heap.h (inheap): Check for NULL. + Thu Oct 4 23:17:49 2001 Christopher Faylor Add second path_conv * argument to fstat()s throughout. diff --git a/winsup/cygwin/child_info.h b/winsup/cygwin/child_info.h index 983675877..7827d853f 100644 --- a/winsup/cygwin/child_info.h +++ b/winsup/cygwin/child_info.h @@ -12,7 +12,7 @@ details. */ enum { - PROC_MAGIC = 0xaf12f000, + PROC_MAGIC = 0xaf13f000, PROC_FORK = PROC_MAGIC + 1, PROC_EXEC = PROC_MAGIC + 2, PROC_SPAWN = PROC_MAGIC + 3, diff --git a/winsup/cygwin/debug.h b/winsup/cygwin/debug.h index 8323e617a..fdd3d3ccd 100644 --- a/winsup/cygwin/debug.h +++ b/winsup/cygwin/debug.h @@ -13,6 +13,12 @@ details. */ #include "dlmalloc.h" #define MALLOC_CHECK ({\ debug_printf ("checking malloc pool");\ + free (malloc (20));\ + free (malloc (128));\ + free (malloc (4096));\ + free (malloc (16384));\ + free (malloc (32768));\ + free (malloc (65536));\ (void)mallinfo ();\ }) #endif diff --git a/winsup/cygwin/fork.cc b/winsup/cygwin/fork.cc index 78d1abe01..adac0ce9d 100644 --- a/winsup/cygwin/fork.cc +++ b/winsup/cygwin/fork.cc @@ -315,6 +315,7 @@ fork_child (HANDLE& hParent, dll *&first_dll, bool& load_dlls) /* Initialize signal/process handling */ sigproc_init (); __pthread_atforkchild (); + MALLOC_CHECK; cygbench ("fork-child"); return 0; } diff --git a/winsup/cygwin/heap.h b/winsup/cygwin/heap.h index df652ac22..bcea4bae0 100644 --- a/winsup/cygwin/heap.h +++ b/winsup/cygwin/heap.h @@ -15,5 +15,5 @@ void heap_init (); void malloc_init (); #define inheap(s) \ - (cygheap->heapptr && ((char *) (s) >= (char *) cygheap->heapbase) \ + (cygheap->heapptr && s && ((char *) (s) >= (char *) cygheap->heapbase) \ && ((char *) (s) <= (char *) cygheap->heaptop))