summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMalcolm Beattie <mbeattie@sable.ox.ac.uk>1997-05-02 19:03:49 +0000
committerMalcolm Beattie <mbeattie@sable.ox.ac.uk>1997-05-02 19:03:49 +0000
commit9ed32d99bcab50ff8df392e9741dd3de08a596a4 (patch)
treef17e516536617db2ef023416cb30a1483d481c62
parentf93b4edd807be1c6102dad09f884828c27c4a58b (diff)
downloadperl-9ed32d99bcab50ff8df392e9741dd3de08a596a4.tar.gz
Don't require CvDEPTH == 0 when bombing out of subs.
p4raw-id: //depot/thrperl@9
-rw-r--r--pp_hot.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pp_hot.c b/pp_hot.c
index 2aee0611d5..5d70aa3a8c 100644
--- a/pp_hot.c
+++ b/pp_hot.c
@@ -33,7 +33,7 @@ void *cvarg;
DEBUG_L((fprintf(stderr, "0x%lx unsetting CvOWNER of 0x%lx:%s\n",
(unsigned long)thr, (unsigned long)cv, SvPEEK((SV*)cv))));
MUTEX_LOCK(CvMUTEXP(cv));
- assert(CvDEPTH(cv) == 0);
+ /* assert(CvDEPTH(cv) == 0); */
assert(thr == CvOWNER(cv));
CvOWNER(cv) = 0;
if (CvCONDP(cv))