Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/t_hash.c
Original file line number Diff line number Diff line change
Expand Up @@ -322,6 +322,7 @@ bool hashTypeHasStringRef(robj *o, sds field) {
if (objectGetEncoding(o) == OBJ_ENCODING_LISTPACK) return false;
hashtable *ht = objectGetVal(o);
void **entry_ref = hashtableFindRef(ht, field);
if (!entry_ref) return false;
Comment thread
allenss-amazon marked this conversation as resolved.
return (entryHasStringRef(*entry_ref));
}

Expand Down
Loading