diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1997-12-06 01:00:45 -0500 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1997-12-23 21:12:42 +0000 |
commit | 01b73108cbbda9279c5fb6c5789d5ec6185e3ea2 (patch) | |
tree | cc9e132a28206ed93190b596d36be91c7da70c04 /sv.c | |
parent | c7cc6f1c203c4e65db1c0f5cee7626570fbf65fd (diff) | |
download | perl-01b73108cbbda9279c5fb6c5789d5ec6185e3ea2.tar.gz |
[win32] Trivial bugfix#3 from local repository
Message-Id: <199712061100.GAA14864@aatma.engin.umich.edu>
Subject: Re: Assigning result of pop scrambles unrelated reference
p4raw-id: //depot/win32/perl@383
Diffstat (limited to 'sv.c')
-rw-r--r-- | sv.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -2091,6 +2091,7 @@ sv_setsv(SV *dstr, register SV *sstr) */ if (SvTEMP(sstr) && /* slated for free anyway? */ + SvREFCNT(sstr) == 1 && /* and no other references to it? */ !(sflags & SVf_OOK)) /* and not involved in OOK hack? */ { if (SvPVX(dstr)) { /* we know that dtype >= SVt_PV */ |