We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Right now the qd_hash_retrieve_str function always returns QD_ERROR_NONE. It should look like this instead
qd_hash_retrieve_str
qd_error_t qd_hash_retrieve_str(qd_hash_t *h, const unsigned char *key, void **val) { qd_hash_item_t *item = qd_hash_internal_get_item_str(h, qd_hash_get_bucket_str(h, key), key); if (item) { *val = item->v.val; return QD_ERROR_NONE; } else { *val = 0; return QD_ERROR_NOT_FOUND; } }
The text was updated successfully, but these errors were encountered:
35d5a0f
No branches or pull requests
Right now the
qd_hash_retrieve_str
function always returns QD_ERROR_NONE. It should look like this insteadThe text was updated successfully, but these errors were encountered: