Browse Source

- Fix the bug Thies found where I forgot to change a break; to NEXT_OPCODE();

- If you find anymore let me know
PHP-4.0.5
Andi Gutmans 27 years ago
parent
commit
fdbca7526f
  1. 2
      Zend/zend_execute.c

2
Zend/zend_execute.c

@ -1910,7 +1910,7 @@ send_by_ref:
if (opline->opcode==ZEND_INIT_ARRAY) {
array_init(array_ptr);
if (!expr_ptr) {
break;
NEXT_OPCODE();
}
}
if (opline->op1.op_type == IS_TMP_VAR) { /* temporary variable */

Loading…
Cancel
Save