From 6c3f0a8911637874000656a4fad5fb7ce04a2751 Mon Sep 17 00:00:00 2001 From: Nicholas Clark Date: Fri, 7 Apr 2006 12:49:11 +0000 Subject: [PATCH] Oops. Being too terse for my own good - it's not a great idea to chain assignment of char * to struct pmop *, even when the value is NULL. p4raw-id: //depot/perl@27734 --- perl.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/perl.c b/perl.c index 827844266c..1045c737c1 100644 --- a/perl.c +++ b/perl.c @@ -3474,7 +3474,8 @@ S_init_interp(pTHX) /* As these are inside a structure, PERLVARI isn't capable of initialising them */ PL_regindent = 0; - PL_reg_oldcurpm = PL_reg_curpm = PL_reg_poscache = PL_reg_starttry = NULL; + PL_reg_oldcurpm = PL_reg_curpm = NULL; + PL_reg_poscache = PL_reg_starttry = NULL; } STATIC void -- 2.34.1