- Get rid of remains of garbage.

- This should fix Thies' UMR
This commit is contained in:
Andi Gutmans 2000-02-01 16:02:38 +00:00
parent c145f85638
commit 131e3a06fb
3 changed files with 2 additions and 2 deletions

View File

@ -757,6 +757,8 @@ void do_receive_arg(int op, znode *var, znode *offset, znode *initialization, un
opline->op1 = *offset;
if ((op == ZEND_RECV_INIT)) {
opline->op2 = *initialization;
} else {
SET_UNUSED(opline->op2);
}
if (pass_type==BYREF_FORCE && !CG(active_op_array)->arg_types) {
int i;

View File

@ -111,7 +111,6 @@ void init_executor(CLS_D ELS_DC)
zend_llist_apply(&zend_extensions, (void (*)(void *)) zend_extension_activator);
EG(opline_ptr) = NULL;
EG(garbage_ptr) = 0;
EG(suspend_garbage) = 0;
zend_hash_init(&EG(imported_files), 5, NULL, NULL, 0);

View File

@ -176,7 +176,6 @@ struct _zend_executor_globals {
zval *garbage[4];
int garbage_ptr;
zend_bool suspend_garbage;
void *reserved[ZEND_MAX_RESERVED_RESOURCES];
#if SUPPORT_INTERACTIVE