icecat: add release icecat-140.9.0-1gnu1 for aramo
This commit is contained in:
parent
d570f39e11
commit
9b41efc5d4
1197 changed files with 30593 additions and 15344 deletions
|
|
@ -491,6 +491,14 @@ bool SlicedInputStream::Deserialize(
|
|||
|
||||
const SlicedInputStreamParams& params = aParams.get_SlicedInputStreamParams();
|
||||
|
||||
auto end = CheckedUint64(params.start()) + params.length();
|
||||
if (!end.isValid()) {
|
||||
return false;
|
||||
}
|
||||
if (params.curPos() > end.value()) {
|
||||
return false;
|
||||
}
|
||||
|
||||
nsCOMPtr<nsIInputStream> stream =
|
||||
InputStreamHelper::DeserializeInputStream(params.stream());
|
||||
if (!stream) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue