mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-06 05:55:06 +00:00
Tweak a couple more barriers
This commit is contained in:
parent
f31fb43155
commit
2f528ce4ed
2 changed files with 8 additions and 6 deletions
|
@ -328,10 +328,10 @@ struct CPAL
|
|||
{
|
||||
TRACE_SANITIZE (this);
|
||||
return_trace (c->check_struct (this) &&
|
||||
hb_barrier () &&
|
||||
(this+colorRecordsZ).sanitize (c, numColorRecords) &&
|
||||
colorRecordIndicesZ.sanitize (c, numPalettes) &&
|
||||
(version == 0 ||
|
||||
(hb_barrier () && v1 ().sanitize (c, this, numPalettes, numColors))));
|
||||
(version == 0 || v1 ().sanitize (c, this, numPalettes, numColors)));
|
||||
}
|
||||
|
||||
protected:
|
||||
|
|
|
@ -259,9 +259,10 @@ struct ContextualSubtable
|
|||
unsigned int offset = entry.data.markIndex + buffer->info[mark].codepoint;
|
||||
const UnsizedArrayOf<HBGlyphID16> &subs_old = (const UnsizedArrayOf<HBGlyphID16> &) subs;
|
||||
replacement = &subs_old[Types::wordOffsetToIndex (offset, table, subs_old.arrayZ)];
|
||||
if (!(replacement->sanitize (&c->sanitizer) && hb_barrier ()) || !*replacement)
|
||||
if (!(replacement->sanitize (&c->sanitizer) &&
|
||||
hb_barrier () &&
|
||||
*replacement))
|
||||
replacement = nullptr;
|
||||
hb_barrier ();
|
||||
}
|
||||
if (replacement)
|
||||
{
|
||||
|
@ -288,9 +289,10 @@ struct ContextualSubtable
|
|||
unsigned int offset = entry.data.currentIndex + buffer->info[idx].codepoint;
|
||||
const UnsizedArrayOf<HBGlyphID16> &subs_old = (const UnsizedArrayOf<HBGlyphID16> &) subs;
|
||||
replacement = &subs_old[Types::wordOffsetToIndex (offset, table, subs_old.arrayZ)];
|
||||
if (!(replacement->sanitize (&c->sanitizer) && hb_barrier ()) || !*replacement)
|
||||
if (!(replacement->sanitize (&c->sanitizer) &&
|
||||
hb_barrier () &&
|
||||
*replacement))
|
||||
replacement = nullptr;
|
||||
hb_barrier ();
|
||||
}
|
||||
if (replacement)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue