diff options
Diffstat (limited to 'ext/ldap/ldap.c')
-rw-r--r-- | ext/ldap/ldap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/ldap/ldap.c b/ext/ldap/ldap.c index 95ff13da7c..28e1670b81 100644 --- a/ext/ldap/ldap.c +++ b/ext/ldap/ldap.c @@ -934,7 +934,7 @@ PHP_FUNCTION(ldap_get_entries) ldap_value_free(ldap_value); attr_len = strlen(attribute); - zend_hash_update(tmp1->value.ht, php_strtolower(attribute, attr_len), attr_len+1, (void *) &tmp2, sizeof(pval *), NULL); + zend_hash_update(Z_ARRVAL_P(tmp1), php_strtolower(attribute, attr_len), attr_len+1, (void *) &tmp2, sizeof(pval *), NULL); add_index_string(tmp1, num_attrib, attribute, 1); num_attrib++; |