diff options
author | Nicholas Clark <nick@ccl4.org> | 2006-04-07 12:49:11 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2006-04-07 12:49:11 +0000 |
commit | 6c3f0a8911637874000656a4fad5fb7ce04a2751 (patch) | |
tree | a6f0d9b28f70643fe0c9c5348789e9b6ebbec316 /perl.c | |
parent | a18871060e82f745ea4284674e4fce31b2ab6280 (diff) | |
download | perl-6c3f0a8911637874000656a4fad5fb7ce04a2751.tar.gz |
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
Diffstat (limited to 'perl.c')
-rw-r--r-- | perl.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 |