mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1229437 followup 2 - Fix another sign-compare error in RubyColumn::Iterator on CLOSED TREE.
This commit is contained in:
parent
68ad96ea38
commit
b53c2adb19
@ -163,7 +163,8 @@ struct MOZ_STACK_CLASS RubyColumn
|
||||
, mIndex(aIndex)
|
||||
{
|
||||
MOZ_ASSERT(aIndex == -1 ||
|
||||
(aIndex >= 0 && aIndex <= aColumn.mTextFrames.Length()));
|
||||
(aIndex >= 0 &&
|
||||
aIndex <= int32_t(aColumn.mTextFrames.Length())));
|
||||
SkipUntilExistingFrame();
|
||||
}
|
||||
friend struct RubyColumn; // for the constructor
|
||||
|
Loading…
Reference in New Issue
Block a user