[object] Handle mallocation error in set_user_data

Should make bots happy.
This commit is contained in:
Behdad Esfahbod 2023-01-29 10:03:52 -07:00
parent 548bad221c
commit cb47dca74c
1 changed files with 1 additions and 1 deletions

View File

@ -69,7 +69,7 @@ struct hb_lockable_set_t
item = items.push (v);
l.unlock ();
}
return item;
return items.in_error () ? nullptr : item;
}
template <typename T>