зеркало из https://github.com/mozilla/gecko-dev.git
bug 1332690 - remove diagnostic for nonexistant proxies
This commit is contained in:
Родитель
d4a08aa0fc
Коммит
dbe8f2a177
|
@ -411,8 +411,13 @@ DocAccessibleParent::AddChildDoc(DocAccessibleParent* aChildDoc,
|
|||
// We do not use GetAccessible here because we want to be sure to not get the
|
||||
// document it self.
|
||||
ProxyEntry* e = mAccessibles.GetEntry(aParentID);
|
||||
if (!e)
|
||||
if (!e) {
|
||||
#ifdef DEBUG
|
||||
return IPC_FAIL(this, "binding to nonexistant proxy!");
|
||||
#else
|
||||
return IPC_OK();
|
||||
#endif
|
||||
}
|
||||
|
||||
ProxyAccessible* outerDoc = e->mProxy;
|
||||
MOZ_ASSERT(outerDoc);
|
||||
|
|
Загрузка…
Ссылка в новой задаче