summaryrefslogtreecommitdiff
path: root/Zend/zend_compile.h
diff options
context:
space:
mode:
authorXinchen Hui <laruence@gmail.com>2014-02-21 23:02:24 +0800
committerXinchen Hui <laruence@gmail.com>2014-02-21 23:02:24 +0800
commit47fb19853335e4f155700a9284bbfc1fde1b4bd6 (patch)
treef03840ecbf82c031d335707c753ed3bd3596b0fc /Zend/zend_compile.h
parent013cc55395e2b60e801eb9a8bced0219d17df129 (diff)
downloadphp-git-47fb19853335e4f155700a9284bbfc1fde1b4bd6.tar.gz
Revert "Use zend_string for arg_info to fixed segfault in Zend/tests/argument_restriction_003.phpt"
This reverts commit b96318105b8a908ec3cb294b8133e36d1b8cba7a.
Diffstat (limited to 'Zend/zend_compile.h')
-rw-r--r--Zend/zend_compile.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/Zend/zend_compile.h b/Zend/zend_compile.h
index 990a34c67c..050cc47993 100644
--- a/Zend/zend_compile.h
+++ b/Zend/zend_compile.h
@@ -228,10 +228,10 @@ typedef struct _zend_property_info {
typedef struct _zend_arg_info {
const char *name;
zend_uint name_len;
-//??? const char *class_name;
-// zend_uint class_name_len;
-// zend_string *name;
- zend_string *class_name;
+ const char *class_name;
+ zend_uint class_name_len;
+//??? zend_string *name;
+//??? zend_string *class_name;
zend_uchar type_hint;
zend_uchar pass_by_reference;
zend_bool allow_null;