diff options
Diffstat (limited to 'winsup/cygwin/exceptions.cc')
-rw-r--r-- | winsup/cygwin/exceptions.cc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/winsup/cygwin/exceptions.cc b/winsup/cygwin/exceptions.cc index c50e5c1..9b13a00 100644 --- a/winsup/cygwin/exceptions.cc +++ b/winsup/cygwin/exceptions.cc @@ -381,7 +381,12 @@ try_to_debug () static void stackdump (EXCEPTION_RECORD *e, CONTEXT *in) { + extern unsigned long rlim_core; const char *p; + + if (rlim_core == 0UL) + return; + if (myself->progname[0]) { /* write to progname.stackdump if possible */ |