summaryrefslogtreecommitdiff
path: root/Zend/zend_string.h
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/zend_string.h')
-rw-r--r--Zend/zend_string.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_string.h b/Zend/zend_string.h
index e3467a8b76..8c93ef48ac 100644
--- a/Zend/zend_string.h
+++ b/Zend/zend_string.h
@@ -100,7 +100,7 @@ static zend_always_inline zend_string *zend_str_alloc(int len, int persistent)
ret->gc.refcount = 1;
ret->gc.u.v.type = IS_STRING;
ret->gc.u.v.flags = (persistent ? IS_STR_PERSISTENT : 0);
- ret->gc.u.v.buffer = 0;
+ ret->gc.u.v.gc_info = 0;
ret->h = 0;
ret->len = len;
return ret;