mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-05 21:45:06 +00:00
bug fix in hashmap get_with_hash()
This commit is contained in:
parent
825bc19643
commit
e5139c51aa
1 changed files with 1 additions and 1 deletions
|
@ -307,7 +307,7 @@ struct hb_hashmap_t
|
|||
const V& get_with_hash (const K &key, uint32_t hash) const
|
||||
{
|
||||
if (!items) return item_t::default_value ();
|
||||
auto *item = fetch_item (key, hb_hash (key));
|
||||
auto *item = fetch_item (key, hash);
|
||||
if (item)
|
||||
return item->value;
|
||||
return item_t::default_value ();
|
||||
|
|
Loading…
Add table
Reference in a new issue