icecat: add release icecat-140.10.1-1gnu1 for ecne

This commit is contained in:
Ark74 2026-05-04 16:58:41 -06:00
parent a5f93cb214
commit ff85d7c623
1256 changed files with 63469 additions and 24141 deletions

View file

@ -47,7 +47,11 @@ class SlicedInputStream final : public nsIAsyncInputStream,
// than aStart bytes, reading from SlicedInputStream returns no data. If
// aInputStream contains more than aStart bytes, but fewer than aStart +
// aLength bytes, reading from SlicedInputStream returns as many bytes as can
// be consumed from aInputStream after reading aLength bytes.
// be consumed from aInputStream after reading aStart bytes.
//
// It is safe to specify an arbitrarily large aLength (e.g. UINT64_MAX). Doing
// so is treated as allowing an arbitrary number of additional bytes following
// aStart.
//
// aInputStream should not be read from after constructing a
// SlicedInputStream wrapper around it.