зеркало из https://github.com/mozilla/pjs.git
Fixing rtm++ bug 54121. Make sure to unroot the JS object before setting the script object to null to avoid referencing deleted memory later on in the GC. Thanks to sean@beatnik.com for testing and helping with the patch. a=waterson, r=brendan
This commit is contained in:
Родитель
0f6d661c05
Коммит
1bc2495bff
|
@ -348,6 +348,14 @@ nsHTMLEmbedElement::GetScriptObject(nsIScriptContext* aContext,
|
|||
// don't cache it so that the next call can get the correct script object
|
||||
// if the plugin instance is available at the next call.
|
||||
if (NS_FAILED(rv)) {
|
||||
if (mInner.mDocument) {
|
||||
// Since we're resetting the script object to null we'll remove the
|
||||
// reference to it so that we won't add the same named reference
|
||||
// again the next time someone requests the script object.
|
||||
aContext->RemoveReference((void *)&mInner.mDOMSlots->mScriptObject,
|
||||
mInner.mDOMSlots->mScriptObject);
|
||||
}
|
||||
|
||||
mInner.SetScriptObject(nsnull);
|
||||
|
||||
*aScriptObject = elementObject;
|
||||
|
|
|
@ -348,6 +348,14 @@ nsHTMLEmbedElement::GetScriptObject(nsIScriptContext* aContext,
|
|||
// don't cache it so that the next call can get the correct script object
|
||||
// if the plugin instance is available at the next call.
|
||||
if (NS_FAILED(rv)) {
|
||||
if (mInner.mDocument) {
|
||||
// Since we're resetting the script object to null we'll remove the
|
||||
// reference to it so that we won't add the same named reference
|
||||
// again the next time someone requests the script object.
|
||||
aContext->RemoveReference((void *)&mInner.mDOMSlots->mScriptObject,
|
||||
mInner.mDOMSlots->mScriptObject);
|
||||
}
|
||||
|
||||
mInner.SetScriptObject(nsnull);
|
||||
|
||||
*aScriptObject = elementObject;
|
||||
|
|
Загрузка…
Ссылка в новой задаче