From 530bea50c0f9b8f2f381af49c3e23abdc6ce19dd Mon Sep 17 00:00:00 2001 From: Father Chrysostomos Date: Sat, 12 May 2012 23:10:58 -0700 Subject: [PATCH] op.c: Remove redundant assignment This was added unnecessarily in commit ddeae0f14c. It is a local variable assigned to just before the function returns, so the value is never used in the OP_UNDEF case. --- op.c | 1 - 1 file changed, 1 deletion(-) diff --git a/op.c b/op.c index 339110d..f1d0261 100644 --- a/op.c +++ b/op.c @@ -1775,7 +1775,6 @@ Perl_op_lvalue_flags(pTHX_ OP *o, I32 type, U32 flags) switch (o->op_type) { case OP_UNDEF: - localize = 0; PL_modcount++; return o; case OP_STUB: -- 2.7.4