Bug 1377897 - If a HalfOpen can be Abndoned we need to check if mEnt is still present before setting mDoNotDestroy. r=mcmanus

This commit is contained in:
Dragana Damjanovic 2017-07-10 20:30:58 +02:00
Родитель 6fca503292
Коммит a6dd35dede
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -4164,7 +4164,9 @@ nsHalfOpenSocket::StartFastOpen()
SetupBackupTimer();
}
}
mEnt->mDoNotDestroy = false;
if (mEnt) {
mEnt->mDoNotDestroy = false;
}
return rv;
}