1
0
mirror of https://github.com/php/php-src.git synced 2026-04-25 17:08:14 +02:00

fixed compiler warning

This commit is contained in:
Georg Richter
2003-02-16 18:04:29 +00:00
parent 148fdce82d
commit 60d1b378ed
+1 -1
View File
@@ -3946,7 +3946,7 @@ int zend_declare_namespace_handler(ZEND_OPCODE_HANDLER_ARGS)
zend_error(E_ERROR, "Internal error: Cannot locate namespace '%s'", Z_STRVAL_P(namespace_name));
}
new_op_array = (*pns)->constructor;
new_op_array = (zend_op_array *)(*pns)->constructor;
FREE_OP(EX(Ts), &EX(opline)->op1, EG(free_op1));
EX_T(EX(opline)->result.u.var).var.ptr_ptr = &EX_T(EX(opline)->result.u.var).var.ptr;