From 46959f1ccb067b059f259c54d71a91620fd19d8b Mon Sep 17 00:00:00 2001 From: Father Chrysostomos Date: Mon, 12 Aug 2013 15:52:23 -0700 Subject: [PATCH] mg.c: Fix U32-to-bool assignment This was caused by 3805b5fb04. This commit restores the !=0 that was there before 2fd13eccf0. Thanks to Steve Hay for helping to track down the smoke failures. --- mg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mg.c b/mg.c index 0ce58ab..5741181 100644 --- a/mg.c +++ b/mg.c @@ -116,7 +116,7 @@ S_save_magic_flags(pTHX_ I32 mgs_ix, SV *sv, U32 flags) mgs = SSPTR(mgs_ix, MGS*); mgs->mgs_sv = sv; mgs->mgs_magical = SvMAGICAL(sv); - mgs->mgs_readonly = SvREADONLY(sv); + mgs->mgs_readonly = SvREADONLY(sv) != 0; mgs->mgs_ss_ix = PL_savestack_ix; /* points after the saved destructor */ mgs->mgs_bumped = bumped; -- 2.7.4