Changeset 125
- Timestamp:
- 07/11/05 19:51:01 (3 years ago)
- Files:
-
- eaccelerator/trunk/ea_restore.c (modified) (1 diff)
- eaccelerator/trunk/loader.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
eaccelerator/trunk/ea_restore.c
r124 r125 778 778 } 779 779 780 if (from->create_object != NULL)781 to->create_object = from->create_object;782 783 780 old = EAG(class_entry); 784 781 EAG(class_entry) = to; eaccelerator/trunk/loader.c
r124 r125 390 390 static void decode_op(zend_op_array *to, zend_op *opline, unsigned int ops, 391 391 char **p, unsigned int* l TSRMLS_DC) { 392 #if defined(ZEND_ENGINE_2) && defined(HAVE_EACCELERATOR_STANDALONE_LOADER) 392 #ifdef ZEND_ENGINE_2 393 #ifdef HAVE_EACCELERATOR_STANDALONE_LOADER 393 394 opline->handler = zend_opcode_handlers[opline->opcode]; 394 395 #else 395 396 opline->handler = get_opcode_handler(opline->opcode TSRMLS_CC); 397 #endif 396 398 #endif 397 399 opline->lineno = decode32(p, l);