php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #74643 zend_read_static_property returns &NULL for extending classes
Submitted: 2017-05-24 11:12 UTC Modified: 2017-05-24 14:43 UTC
From: jurigag at gmail dot com Assigned:
Status: Duplicate Package: Scripting Engine problem
PHP Version: 7.0.19 OS: Ubuntu 14.04
Private report: No CVE-ID: None
View Add Comment Developer Edit
Welcome! If you don't have a Git account, you can't do anything here.
You can add a comment by following this link or if you reported this bug, you can edit this bug over here.
(description)
Block user comment
Status: Assign to:
Package:
Bug Type:
Summary:
From: jurigag at gmail dot com
New email:
PHP Version: OS:

 

 [2017-05-24 11:12 UTC] jurigag at gmail dot com
Description:
------------
When extending internal class which has defined static property with null value and accessing this static property in C code using zend_read_static_property there is value returned as &NULL in C code causing some comparisons to fail. Though value in php code of this static property is correctly returned as NULL.

This also happens for php 7.1 as well.

Test script:
---------------
In class init:

zend_declare_property_null(test3_test_ce, sizeof("someNull")-1, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC TSRMLS_CC);

Access and dump it somwhere(keep in mind you must extends class in php first):

zval *tmp = zend_read_static_property(ce, sizeof("someNull")-1, len, (zend_bool) ZEND_FETCH_CLASS_SILENT); // here will be returned &NULL
php_var_dump(tmp, 1); // var dumps &NULL
if (Z_TYPE_P(tmp) == IS_NULL) // false


Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2017-05-24 11:29 UTC] jurigag at gmail dot com
zval *tmp = zend_read_static_property(ce, "someNull", sizeof("queryString")-1, (zend_bool) ZEND_FETCH_CLASS_SILENT);
 [2017-05-24 14:30 UTC] jurigag at gmail dot com
-Status: Open +Status: Closed
 [2017-05-24 14:30 UTC] jurigag at gmail dot com
I will create it again
 [2017-05-24 14:43 UTC] requinix@php.net
-Status: Closed +Status: Duplicate
 [2017-05-24 14:43 UTC] requinix@php.net
bug #74648
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Tue Apr 23 16:01:30 2024 UTC