1
0
mirror of https://github.com/php/php-src.git synced 2026-03-27 09:42:22 +01:00

fix #43973 (__autoload called with wrong classname when triggered by static callback)

the issue was present only in HEAD
patch by Felipe
This commit is contained in:
Antony Dovgal
2008-01-30 12:30:57 +00:00
parent 8ca171f514
commit dbd82ddf19

View File

@@ -1297,7 +1297,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_ZSTR(class_name_ptr, type, autoload_name, 1);
ZVAL_ZSTRL(class_name_ptr, type, autoload_name, lc_name_len, 1);
args[0] = &class_name_ptr;