icecat: add release icecat-140.6.0-1gnu1 for aramo

This commit is contained in:
Ark74 2026-01-17 18:56:47 -06:00
parent 92fef42cd6
commit 17ba0259bf
3382 changed files with 457689 additions and 569094 deletions

View file

@ -409,6 +409,11 @@ nsresult Http3Session::ProcessInput(nsIUDPSocket* socket) {
LOG(("Http3Session::ProcessInput writer=%p [this=%p state=%d]",
mUdpConn.get(), this, mState));
if (!socket || socket->IsSocketClosed()) {
MOZ_DIAGNOSTIC_ASSERT(false, "UDP socket should still be open");
return NS_ERROR_UNEXPECTED;
}
if (mUseNSPRForIO) {
while (true) {
nsTArray<uint8_t> data;
@ -941,6 +946,11 @@ nsresult Http3Session::ProcessOutput(nsIUDPSocket* socket) {
LOG(("Http3Session::ProcessOutput reader=%p, [this=%p]", mUdpConn.get(),
this));
if (!socket || socket->IsSocketClosed()) {
MOZ_DIAGNOSTIC_ASSERT(false, "UDP socket should still be open");
return NS_ERROR_UNEXPECTED;
}
if (mUseNSPRForIO) {
mSocket = socket;
nsresult rv = mHttp3Connection->ProcessOutputAndSendUseNSPRForIO(