зеркало из https://github.com/mozilla/gecko-dev.git
Bug 650161 - Allow for the possibility that the wrapper cache hasn't been initialized yet when updating it r=bz
This commit is contained in:
Родитель
211f9069dd
Коммит
43b5e6a717
|
@ -123,8 +123,10 @@ public:
|
|||
*/
|
||||
void UpdateWrapper(JSObject* aNewObject, const JSObject* aOldObject)
|
||||
{
|
||||
MOZ_ASSERT(mWrapper == aOldObject);
|
||||
mWrapper = aNewObject;
|
||||
if (mWrapper) {
|
||||
MOZ_ASSERT(mWrapper == aOldObject);
|
||||
mWrapper = aNewObject;
|
||||
}
|
||||
}
|
||||
|
||||
bool PreservingWrapper()
|
||||
|
|
Загрузка…
Ссылка в новой задаче