MFH: (kameshj at fastmail dot fm)
?? ??? 2005, PHP 5.0.5
- Fixed bug #32530 (chunk_split() does not append endstr if chunklen is
longer then the original string). (Ilia)
+- Fixed bug #28839 (SIGSEGV in interactive mode (php -a)).
+ (kameshj at fastmail dot fm)
31 Mar 2005, PHP 5.0.4
- Added SNMPv2 support. (harrie)
opline->op2.u.constant.is_ref = 1;
opline->op2.u.constant.refcount = 2;
}
+ switch (opline->opcode) {
+ case ZEND_JMP:
+ opline->op1.u.jmp_addr = &CG(active_op_array)->opcodes[opline->op1.u.opline_num];
+ break;
+ case ZEND_JMPZ:
+ case ZEND_JMPNZ:
+ case ZEND_JMPZ_EX:
+ case ZEND_JMPNZ_EX:
+ opline->op2.u.jmp_addr = &CG(active_op_array)->opcodes[opline->op2.u.opline_num];
+ break;
+ }
opline->handler = zend_opcode_handlers[opline->opcode];
opline++;
}