mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1046038 - Make essential arrays for SafeBrowsing infallible. r=mmc
This commit is contained in:
parent
6d8a7cec86
commit
c2e895fb22
@ -57,12 +57,12 @@ protected:
|
||||
// called with a non-empty array.
|
||||
bool mHasPrefixes;
|
||||
// the prefix for each index.
|
||||
FallibleTArray<uint32_t> mIndexPrefixes;
|
||||
nsTArray<uint32_t> mIndexPrefixes;
|
||||
// the value corresponds to the beginning of the run
|
||||
// (an index in |_deltas|) for the index
|
||||
FallibleTArray<uint32_t> mIndexStarts;
|
||||
nsTArray<uint32_t> mIndexStarts;
|
||||
// array containing deltas from indices.
|
||||
FallibleTArray<uint16_t> mDeltas;
|
||||
nsTArray<uint16_t> mDeltas;
|
||||
|
||||
nsCString mMemoryReportPath;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user