From: Andrei Zmievski Date: Tue, 16 Aug 2005 18:21:04 +0000 (+0000) Subject: Fix it here too X-Git-Tag: PRE_NEW_OCI8_EXTENSION~213 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9bd026e6b42d98279b9d4096249e8165b60ddeb1;p=php Fix it here too --- diff --git a/Zend/zend_compile.c b/Zend/zend_compile.c index 947cd7e465..9e7303869c 100644 --- a/Zend/zend_compile.c +++ b/Zend/zend_compile.c @@ -2380,7 +2380,7 @@ void zend_do_early_binding(TSRMLS_D) zval *parent_name = &(opline-1)->op2.u.constant; zend_class_entry **pce; - if (zend_u_lookup_class(Z_TYPE_P(parent_name), Z_STRVAL_P(parent_name), Z_STRLEN_P(parent_name), &pce TSRMLS_CC) == FAILURE) { + if (zend_u_lookup_class(Z_TYPE_P(parent_name), Z_UNIVAL_P(parent_name), Z_UNILEN_P(parent_name), &pce TSRMLS_CC) == FAILURE) { return; } if (do_bind_inherited_class(opline, CG(class_table), *pce, 1 TSRMLS_CC) == NULL) {