summaryrefslogtreecommitdiff
path: root/ex_imp.c
diff options
context:
space:
mode:
Diffstat (limited to 'ex_imp.c')
-rw-r--r--ex_imp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ex_imp.c b/ex_imp.c
index 7ea0f29..4a48aa5 100644
--- a/ex_imp.c
+++ b/ex_imp.c
@@ -201,7 +201,7 @@ PHP_FUNCTION(suhosin_extract)
201 if (var_exists && ZSTR_LEN(var_name) == sizeof("GLOBALS")-1 && !strcmp(ZSTR_VAL(var_name), "GLOBALS")) { 201 if (var_exists && ZSTR_LEN(var_name) == sizeof("GLOBALS")-1 && !strcmp(ZSTR_VAL(var_name), "GLOBALS")) {
202 break; 202 break;
203 } 203 }
204 if (var_exists && ZSTR_LEN(var_name) == sizeof("this")-1 && !strcmp(ZSTR_VAL(var_name), "this") && EG(scope) && ZSTR_LEN(EG(scope)->name) != 0) { 204 if (var_exists && ZSTR_LEN(var_name) == sizeof("this")-1 && !strcmp(ZSTR_VAL(var_name), "this") /* && EG(scope) && ZSTR_LEN(EG(scope)->name) != 0 */) {
205 break; 205 break;
206 } 206 }
207 ZVAL_STR_COPY(&final_name, var_name); 207 ZVAL_STR_COPY(&final_name, var_name);