Browse Source

Fixed hash key in persistent hash

pull/686/merge
Xinchen Hui 12 years ago
parent
commit
4cc3c7387b
  1. 2
      ext/mysqli/mysqli_nonapi.c

2
ext/mysqli/mysqli_nonapi.c

@ -195,7 +195,7 @@ void mysqli_common_connect(INTERNAL_FUNCTION_PARAMETERS, zend_bool is_real_conne
le.ptr = plist = calloc(1, sizeof(mysqli_plist_entry));
zend_ptr_stack_init_ex(&plist->free_links, 1);
zend_hash_update_mem(&EG(persistent_list), hash_key, &le, sizeof(le));
zend_hash_str_update_mem(&EG(persistent_list), hash_key->val, hash_key->len, &le, sizeof(le));
}
}
}

Loading…
Cancel
Save