diff options
author | Anatol Belski <ab@php.net> | 2014-11-14 09:46:06 +0100 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2014-11-14 17:39:35 +0100 |
commit | 3b4a6dc11496dbdf22a5a83966f963107d20234e (patch) | |
tree | 3d717f575d8d1f4277e27ade3acd0169379912be /ext/reflection/php_reflection.c | |
parent | 871dc9febc4aade2e3c069b70a53da6404150bb3 (diff) | |
download | php-git-3b4a6dc11496dbdf22a5a83966f963107d20234e.tar.gz |
removed useless check
the offset member is an unsigned
Diffstat (limited to 'ext/reflection/php_reflection.c')
-rw-r--r-- | ext/reflection/php_reflection.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/ext/reflection/php_reflection.c b/ext/reflection/php_reflection.c index b972c2899c..e9c59ea86e 100644 --- a/ext/reflection/php_reflection.c +++ b/ext/reflection/php_reflection.c @@ -3359,12 +3359,10 @@ static void add_class_vars(zend_class_entry *ce, int statics, zval *return_value continue; } prop = NULL; - if (prop_info->offset >= 0) { - if (statics && (prop_info->flags & ZEND_ACC_STATIC) != 0) { - prop = &ce->default_static_members_table[prop_info->offset]; - } else if (!statics && (prop_info->flags & ZEND_ACC_STATIC) == 0) { - prop = &ce->default_properties_table[OBJ_PROP_TO_NUM(prop_info->offset)]; - } + if (statics && (prop_info->flags & ZEND_ACC_STATIC) != 0) { + prop = &ce->default_static_members_table[prop_info->offset]; + } else if (!statics && (prop_info->flags & ZEND_ACC_STATIC) == 0) { + prop = &ce->default_properties_table[OBJ_PROP_TO_NUM(prop_info->offset)]; } if (!prop) { continue; |