Bug 1268714 - Check for failure result or a failed nsresult from SendLoadGMP. r=mccr8

MozReview-Commit-ID: 9bE9hfXiBI5
This commit is contained in:
Jim Mathies 2016-04-29 13:24:30 -05:00
Родитель 60b595b137
Коммит fa8be62cee
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -76,7 +76,7 @@ public:
bool ok = aGMPServiceChild->SendLoadGMP(mNodeId, mAPI, mTags,
alreadyBridgedTo, &otherProcess,
&displayName, &pluginId, &rv);
if (!ok && rv == NS_ERROR_ILLEGAL_DURING_SHUTDOWN) {
if (!ok || rv == NS_ERROR_ILLEGAL_DURING_SHUTDOWN) {
mCallback->Done(nullptr);
return;
}