From 8c63ea58497f2deb05596f96547d19395545a0ee Mon Sep 17 00:00:00 2001 From: Gerard Goossen Date: Tue, 8 Dec 2009 20:41:28 +0100 Subject: Store the PL_compcv instead of the the PL_comppad in parser stack, and make it reference counted. Properly solves [perl #66094] --- parser.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'parser.h') diff --git a/parser.h b/parser.h index 462dcfdef8..4ef460836c 100644 --- a/parser.h +++ b/parser.h @@ -15,7 +15,7 @@ typedef struct { YYSTYPE val; /* semantic value */ short state; I32 savestack_ix; /* size of savestack at this state */ - AV *comppad; /* value of PL_comppad when this value was created */ + CV *compcv; /* value of PL_compcv when this value was created */ #ifdef DEBUGGING const char *name; /* token/rule name for -Dpv */ #endif -- cgit v1.2.1