Changeset 406 for branches/1.2/coverager.c
- Timestamp:
- 05/31/2007 04:00:33 AM (18 months ago)
- Location:
- branches/1.2
- Files:
-
- 2 modified
-
. (modified) (1 prop)
-
coverager.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/1.2
- Property svnmerge-integrated changed from /trunk:1-302,344-346,371,374-375,388,391,393,395,400 to /trunk:1-302,344-346,371,374-375,388,391,393,395,400,402-404
-
branches/1.2/coverager.c
r394 r406 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 = NULL; 20 20 21 21 #if 0 … … 454 454 zend_op_array *op_array; 455 455 456 op_array = o rigin_compile_file(h, type TSRMLS_CC);456 op_array = old_compile_file(h, type TSRMLS_CC); 457 457 if (op_array) { 458 458 if (XG(coverager)) { … … 483 483 int xc_coverager_init(int module_number TSRMLS_DC) /* {{{ */ 484 484 { 485 o rigin_compile_file = zend_compile_file;485 old_compile_file = zend_compile_file; 486 486 zend_compile_file = xc_compile_file_for_coverage; 487 487 … … 503 503 void xc_coverager_destroy() /* {{{ */ 504 504 { 505 if (o rigin_compile_file == xc_compile_file_for_coverage) {506 zend_compile_file = o rigin_compile_file;505 if (old_compile_file == xc_compile_file_for_coverage) { 506 zend_compile_file = old_compile_file; 507 507 } 508 508 if (xc_coveragedump_dir) {

