From a52ce1beaa285529abb33715b5cce9810502c508 Mon Sep 17 00:00:00 2001 From: Matthias Kramm Date: Sat, 14 Mar 2009 21:23:01 +0100 Subject: [PATCH] bugfix in cut_last_push() --- lib/as3/code.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/as3/code.c b/lib/as3/code.c index 6ef68a3..5e196de 100644 --- a/lib/as3/code.c +++ b/lib/as3/code.c @@ -1179,11 +1179,11 @@ code_t* cut_last_push(code_t*c) } else if(c->opcode == OPCODE_CALLSUPER) { c->opcode = OPCODE_CALLSUPERVOID; return c; - } else if(c->opcode == OPCODE_NEWOBJECT || - c->opcode == OPCODE_NEWARRAY) { + } else if((c->opcode == OPCODE_NEWOBJECT || + c->opcode == OPCODE_NEWARRAY) && + !c->data[0]) { // we can discard these if they're not eating up stack parameters - if(!c->data[0]) - return code_cutlast(c); + return code_cutlast(c); } else if(op->stack_minus ==0 && op->stack_plus == 0 && !(op->flags&~(OP_REGISTER|OP_SET_DXNS)) && c->prev) { // trim code *before* the kill, inclocal, declocal, dxns -- 1.7.10.4