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

@ -1448,14 +1448,15 @@ static void ReadableByteStreamControllerRespondInReadableState(
return;
}
RefPtr<ReadableStream> stream(aController->Stream());
// Step 3.3. For each filledPullInto of filledPullIntos,
for (auto& filledPullInto : filledPullIntos) {
// Step 3.3.1. Perform !
// ReadableByteStreamControllerCommitPullIntoDescriptor(controller.[[stream]],
// filledPullInto).
ReadableByteStreamControllerCommitPullIntoDescriptor(
aCx, MOZ_KnownLive(aController->Stream()),
MOZ_KnownLive(filledPullInto), aRv);
aCx, stream, MOZ_KnownLive(filledPullInto), aRv);
if (aRv.Failed()) {
return;
}