mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-15 08:53:07 +09:00
[network] Don't try to use non-existing connections.
This commit is contained in:
parent
5ea8de0262
commit
624ff30bfc
1 changed files with 1 additions and 1 deletions
|
|
@ -762,7 +762,7 @@ nsHttpTransaction::ReadSegments(nsAHttpSegmentReader *reader,
|
|||
return mStatus;
|
||||
}
|
||||
|
||||
if (!mConnected && !m0RTTInProgress) {
|
||||
if (mConnection && !mConnected && !m0RTTInProgress) {
|
||||
mConnected = true;
|
||||
nsCOMPtr<nsISupports> info;
|
||||
mConnection->GetSecurityInfo(getter_AddRefs(info));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue