From 63c057e3313918a800ad7faebdb648216ddba4c0 Mon Sep 17 00:00:00 2001 From: Dmitry Stogov Date: Wed, 2 Jul 2014 23:29:53 +0400 Subject: Removed EG(opline_ptr) and use corresponding value from EG(current_execute_data) --- Zend/zend_API.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Zend/zend_API.c') diff --git a/Zend/zend_API.c b/Zend/zend_API.c index 3a96574fcc..36b615ba1b 100644 --- a/Zend/zend_API.c +++ b/Zend/zend_API.c @@ -2494,7 +2494,7 @@ static int module_registry_cleanup(zval *zv TSRMLS_DC) /* {{{ */ ZEND_API void zend_deactivate_modules(TSRMLS_D) /* {{{ */ { - EG(opline_ptr) = NULL; /* we're no longer executing anything */ + EG(current_execute_data) = NULL; /* we're no longer executing anything */ zend_try { if (EG(full_tables_cleanup)) { -- cgit v1.2.1