Changeset 402 for trunk/coverager.c
- Timestamp:
- 05/31/2007 03:21:02 AM (18 months ago)
- Files:
-
- 1 modified
-
trunk/coverager.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/coverager.c
r393 r402 17 17 18 18 static char *xc_coveragedump_dir = NULL; 19 static zend_compile_file_t *o rigin_compile_file;19 static zend_compile_file_t *old_compile_file; 20 20 21 21 #if 0 … … 436 436 zend_op_array *op_array; 437 437 438 op_array = o rigin_compile_file(h, type TSRMLS_CC);438 op_array = old_compile_file(h, type TSRMLS_CC); 439 439 if (op_array) { 440 440 if (XG(coverager)) { … … 465 465 int xc_coverager_init(int module_number TSRMLS_DC) /* {{{ */ 466 466 { 467 o rigin_compile_file = zend_compile_file;467 old_compile_file = zend_compile_file; 468 468 zend_compile_file = xc_compile_file_for_coverage; 469 469 … … 485 485 void xc_coverager_destroy() /* {{{ */ 486 486 { 487 if (o rigin_compile_file == xc_compile_file_for_coverage) {488 zend_compile_file = o rigin_compile_file;487 if (old_compile_file == xc_compile_file_for_coverage) { 488 zend_compile_file = old_compile_file; 489 489 } 490 490 if (xc_coveragedump_dir) {

