Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2001-10-05 08:36:14 +0400
committerChristopher Faylor <me@cgf.cx>2001-10-05 08:36:14 +0400
commitf978840beefd9d0ac3fb9a26f5440eb9b20584c9 (patch)
treeac07b9b2fca5cd42e307f418811663f85aefa9b7 /winsup/cygwin/fork.cc
parent8d817b0f9ed20cfa5e9482074999c2973a2a9543 (diff)
* heap.h (inheap): Check for NULL.
Diffstat (limited to 'winsup/cygwin/fork.cc')
-rw-r--r--winsup/cygwin/fork.cc1
1 files changed, 1 insertions, 0 deletions
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;
}