1
0
Fork 0

name/class_name need not deep copy in zend_arg_info

git-svn-id: svn://svn.lighttpd.net/xcache/trunk@643 c26eb9a1-5813-0410-bd6c-c2e55f420ca7
This commit is contained in:
Xuefer 2009-07-06 09:47:52 +00:00
parent dd1d1592fc
commit 28ce1b378c
1 changed files with 2 additions and 2 deletions

View File

@ -219,9 +219,9 @@ dnl {{{ zend_arg_info
#ifdef ZEND_ENGINE_2
DEF_STRUCT_P_FUNC(`zend_arg_info', , `
DISPATCH(zend_uint, name_len)
PROC_ZSTRING_L(, name, name_len)
COPY(name)
DISPATCH(zend_uint, class_name_len)
PROC_ZSTRING_L(, class_name, class_name_len)
COPY(class_name)
DISPATCH(zend_bool, array_type_hint)
DISPATCH(zend_bool, allow_null)
DISPATCH(zend_bool, pass_by_reference)