Change 34297 by [EMAIL PROTECTED] on 2008/09/06 14:23:34
Integrate:
[ 33815]
Subject: [PATCH] Call SvMAGICAL_off in mg_free
From: Bram <[EMAIL PROTECTED]>
Date: Mon, 05 May 2008 16:18:56 +0200
Message-ID: <[EMAIL PROTECTED]>
Affected files ...
... //depot/maint-5.8/perl/mg.c#166 integrate
... //depot/maint-5.8/perl/sv.c#389 integrate
Differences ...
==== //depot/maint-5.8/perl/mg.c#166 (text) ====
Index: perl/mg.c
--- perl/mg.c#165~34293~ 2008-09-06 01:58:18.000000000 -0700
+++ perl/mg.c 2008-09-06 07:23:34.000000000 -0700
@@ -500,6 +500,7 @@
SvMAGIC_set(sv, moremagic);
}
SvMAGIC_set(sv, NULL);
+ SvMAGICAL_off(sv);
return 0;
}
==== //depot/maint-5.8/perl/sv.c#389 (text) ====
Index: perl/sv.c
--- perl/sv.c#388~34296~ 2008-09-06 06:17:00.000000000 -0700
+++ perl/sv.c 2008-09-06 07:23:34.000000000 -0700
@@ -3374,7 +3374,6 @@
{
/* need to nuke the magic */
mg_free(dstr);
- SvRMAGICAL_off(dstr);
}
/* There's a lot of redundancy below but we're going for speed here */
End of Patch.