Show
Ignore:
Timestamp:
07/25/06 14:31:24 (2 years ago)
Author:
bart
Message:

Fix restoring of opcode handler for php 5.0.5 when files are loaded

from disk cache. This fixes bug #147

Some update in the release notes for the upcoming rc1

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • eaccelerator/trunk/ea_restore.c

    r236 r241  
    222222#  ifdef ZEND_ENGINE_2_1 
    223223                        ZEND_VM_SET_OPCODE_HANDLER(opline); 
     224#  elif defined(ZEND_ENGINE_2) 
     225            opline->handler = zend_opcode_handlers[opline->opcode]; 
    224226#  else 
    225227                        opline->handler = get_opcode_handler(opline->opcode TSRMLS_CC);