[ot-font] Make advance-cache invalidation threadsafe
Some checks failed
arm / arm-none-eabi (push) Waiting to run
configs-ci / build (push) Waiting to run
fontations / build (push) Waiting to run
linux-ci / build (push) Waiting to run
macos-ci / build (push) Waiting to run
msvc / msvc-2019-amd64 (push) Waiting to run
msvc / msvc-2019-x86 (push) Waiting to run
msys2 / CLANG64 (push) Waiting to run
msys2 / MINGW32 (push) Waiting to run
msys2 / MINGW64 (push) Waiting to run
Scorecard supply-chain security / Scorecard analysis (push) Failing after 1s

Hopefully.
This commit is contained in:
Behdad Esfahbod 2025-04-02 03:41:32 -06:00
parent bbf0c6e781
commit ef8c25ad9f

View file

@ -202,8 +202,14 @@ hb_ot_get_glyph_h_advances (hb_font_t* font, void* font_data,
{ /* Use cache. */
if (ot_font->cached_coords_serial.get_acquire () != (int) font->serial_coords)
{
ot_font->advance_cache->clear ();
ot_font->cached_coords_serial.set_release (font->serial_coords);
// Retire advance cache and let it be recreated.
auto *old_cache = ot_font->advance_cache.get_acquire ();
if (ot_font->advance_cache.cmpexch (cache, nullptr))
{
ot_font->cached_coords_serial.set_release (font->serial_coords);
hb_free (old_cache);
}
goto retry;
}
for (unsigned int i = 0; i < count; i++)