diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1998-07-18 08:48:13 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-07-18 08:48:13 +0000 |
commit | f7ac0805bb97e1e2d7fa37a2ffc86ce9bd5c6350 (patch) | |
tree | 6d4919198f8df8e681d1b5b8e762aa295193ed53 /util.c | |
parent | d91ab1730ab6e32cf51b06d50df160328772fd3d (diff) | |
download | perl-f7ac0805bb97e1e2d7fa37a2ffc86ce9bd5c6350.tar.gz |
fix yet another USE_THREADS leak due to failure to free stacks
p4raw-id: //depot/perl@1531
Diffstat (limited to 'util.c')
-rw-r--r-- | util.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2784,7 +2784,7 @@ new_struct_thread(struct perl_thread *t) curpm = t->Tcurpm; /* XXX No PMOP ref count */ nrs = newSVsv(t->Tnrs); rs = SvREFCNT_inc(nrs); - last_in_gv = (GV*)SvREFCNT_inc(t->Tlast_in_gv); + last_in_gv = Nullgv; ofslen = t->Tofslen; ofs = savepvn(t->Tofs, ofslen); defoutgv = (GV*)SvREFCNT_inc(t->Tdefoutgv); |