diff options
author | Anatol Belski <ab@php.net> | 2018-03-07 18:09:58 +0100 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2018-03-07 18:09:58 +0100 |
commit | 70a1b23c2cf07bccacfa6c97ad9b5de1df41f17e (patch) | |
tree | d28f70ded7da47104138118efaf612db13b41e2a /ext/reflection/php_reflection.c | |
parent | 98aeb528c3d20b12e71e895b960853d56783d9a3 (diff) | |
download | php-git-70a1b23c2cf07bccacfa6c97ad9b5de1df41f17e.tar.gz |
Remove unused assignment
Diffstat (limited to 'ext/reflection/php_reflection.c')
-rw-r--r-- | ext/reflection/php_reflection.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/ext/reflection/php_reflection.c b/ext/reflection/php_reflection.c index 720039bc75..423a37b361 100644 --- a/ext/reflection/php_reflection.c +++ b/ext/reflection/php_reflection.c @@ -4328,7 +4328,6 @@ ZEND_METHOD(reflection_class, getProperty) } } str_name = ZSTR_VAL(name); - str_name_len = ZSTR_LEN(name); if ((tmp = strstr(ZSTR_VAL(name), "::")) != NULL) { classname_len = tmp - ZSTR_VAL(name); classname = zend_string_alloc(classname_len, 0); |