summaryrefslogtreecommitdiff
path: root/zend/globals.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'zend/globals.cpp')
-rw-r--r--zend/globals.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/zend/globals.cpp b/zend/globals.cpp
index 8132ef3..5299c90 100644
--- a/zend/globals.cpp
+++ b/zend/globals.cpp
@@ -43,7 +43,7 @@ Global Globals::operator[](const char *name)
TSRMLS_FETCH();
// check if the variable already exists
- if (zend_hash_find(&EG(symbol_table), name, strlen(name)+1, (void**)&varvalue) == FAILURE)
+ if (zend_hash_find(&EG(symbol_table), name, ::strlen(name)+1, (void**)&varvalue) == FAILURE)
{
// the variable does not already exist, return a global object
// that will automatically set the value when it is updated