From: Antony Dovgal Date: Wed, 30 Aug 2006 12:32:20 +0000 (+0000) Subject: fix minor issue in autoload with unicode enabled X-Git-Tag: RELEASE_1_0_0RC1~1842 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d65b68d09f65089ea5d29a9321de280c9bc1c6d6;p=php fix minor issue in autoload with unicode enabled --- diff --git a/Zend/zend_execute_API.c b/Zend/zend_execute_API.c index 9b60af2a20..b9282bba5d 100644 --- a/Zend/zend_execute_API.c +++ b/Zend/zend_execute_API.c @@ -1121,7 +1121,7 @@ ZEND_API int zend_u_lookup_class_ex(zend_uchar type, zstr name, int name_length, ALLOC_ZVAL(class_name_ptr); INIT_PZVAL(class_name_ptr); - ZVAL_TEXTL(class_name_ptr, name, name_length, 1); + ZVAL_ZSTRL(class_name_ptr, name, name_length, type, 1); args[0] = &class_name_ptr;