diff options
author | Veres Lajos <vlajos@gmail.com> | 2013-07-08 22:09:06 +0100 |
---|---|---|
committer | Stanislav Malyshev <stas@php.net> | 2013-07-21 20:09:53 -0700 |
commit | 4749457a498828e9f7919401889a991b8a9b94b5 (patch) | |
tree | e3515ab9366020e2b422a370033c0b4f2b91d11f /ext/phar/util.c | |
parent | 29281dee491d675185ce155e7956d1617d551c4a (diff) | |
download | php-git-4749457a498828e9f7919401889a991b8a9b94b5.tar.gz |
HASH_KEY_NON_EXISTANT fix
Diffstat (limited to 'ext/phar/util.c')
-rw-r--r-- | ext/phar/util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/phar/util.c b/ext/phar/util.c index 898d8bd4b2..8348a47874 100644 --- a/ext/phar/util.c +++ b/ext/phar/util.c @@ -1554,7 +1554,7 @@ phar_entry_info *phar_get_entry_info_dir(phar_archive_data *phar, char *path, in zend_hash_internal_pointer_reset(&phar->mounted_dirs); while (FAILURE != zend_hash_has_more_elements(&phar->mounted_dirs)) { - if (HASH_KEY_NON_EXISTANT == zend_hash_get_current_key_ex(&phar->mounted_dirs, &key, &keylen, &unused, 0, NULL)) { + if (HASH_KEY_NON_EXISTENT == zend_hash_get_current_key_ex(&phar->mounted_dirs, &key, &keylen, &unused, 0, NULL)) { break; } |