зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1312046: Add check for null COM proxy to GetProxiedAccessibleInSubtree; r=tbsaunde
MozReview-Commit-ID: 3z7OcBPPrK5
This commit is contained in:
Родитель
f03754772e
Коммит
bd172d7c8a
|
@ -1454,6 +1454,10 @@ GetProxiedAccessibleInSubtree(const DocAccessibleParent* aDoc,
|
|||
}
|
||||
|
||||
wrapper->GetNativeInterface(getter_AddRefs(comProxy));
|
||||
MOZ_ASSERT(comProxy);
|
||||
if (!comProxy) {
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
RefPtr<IDispatch> disp;
|
||||
if (FAILED(comProxy->get_accChild(aVarChild, getter_AddRefs(disp)))) {
|
||||
|
|
Загрузка…
Ссылка в новой задаче