diff options
author | Christoph M. Becker <cmbecker69@gmx.de> | 2018-06-30 23:16:50 +0200 |
---|---|---|
committer | Christoph M. Becker <cmbecker69@gmx.de> | 2018-06-30 23:17:54 +0200 |
commit | ae163d9a366baed363d7ed146b2b3a5b72b093d9 (patch) | |
tree | 9f1b820e48ade2110779198e5f90e575dd813287 /ext/intl/breakiterator/breakiterator_class.cpp | |
parent | 0f1726e45d4ef04446e3208a0928edcf51869b4a (diff) | |
parent | 1118fca75dca112e7a6aa60296626733ccfc4284 (diff) | |
download | php-git-ae163d9a366baed363d7ed146b2b3a5b72b093d9.tar.gz |
Merge branch 'PHP-7.1' into PHP-7.2
* PHP-7.1:
Fix #76556: get_debug_info handler for BreakIterator shows wrong type
Diffstat (limited to 'ext/intl/breakiterator/breakiterator_class.cpp')
-rw-r--r-- | ext/intl/breakiterator/breakiterator_class.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/intl/breakiterator/breakiterator_class.cpp b/ext/intl/breakiterator/breakiterator_class.cpp index ae9e258608..cc3865429c 100644 --- a/ext/intl/breakiterator/breakiterator_class.cpp +++ b/ext/intl/breakiterator/breakiterator_class.cpp @@ -167,7 +167,7 @@ static HashTable *BreakIterator_get_debug_info(zval *object, int *is_temp) } ZVAL_STRING(&val, const_cast<char*>(typeid(*biter).name())); - zend_hash_str_update(debug_info, "type", sizeof("type") - 1, &bio->text); + zend_hash_str_update(debug_info, "type", sizeof("type") - 1, &val); return debug_info; } |