зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1341343 - Don't send AltDataOutputStreamConstructor IPC message if mIPCOpen is false r=mayhemer,michal
MozReview-Commit-ID: 2cVpB2HOgSG --HG-- extra : rebase_source : e69c34714f5afd065c6b0ecfd47cf07ba2ab877a
This commit is contained in:
Родитель
62ea9feefd
Коммит
119e9abd82
|
@ -2462,6 +2462,11 @@ NS_IMETHODIMP
|
|||
HttpChannelChild::OpenAlternativeOutputStream(const nsACString & aType, nsIOutputStream * *_retval)
|
||||
{
|
||||
MOZ_ASSERT(NS_IsMainThread(), "Main thread only");
|
||||
|
||||
if (!mIPCOpen) {
|
||||
return NS_ERROR_NOT_AVAILABLE;
|
||||
}
|
||||
|
||||
RefPtr<AltDataOutputStreamChild> stream =
|
||||
static_cast<AltDataOutputStreamChild*>(gNeckoChild->SendPAltDataOutputStreamConstructor(nsCString(aType), this));
|
||||
stream.forget(_retval);
|
||||
|
|
Загрузка…
Ссылка в новой задаче