[Webkit-unassigned] [Bug 53912] [Qt] Fix crashes in QMetaObject::metacall
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Tue Feb 8 12:25:10 PST 2011
https://bugs.webkit.org/show_bug.cgi?id=53912
Michael Saboff <msaboff at apple.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |ASSIGNED
AssignedTo|webkit-unassigned at lists.web |msaboff at apple.com
|kit.org |
--- Comment #13 from Michael Saboff <msaboff at apple.com> 2011-02-08 12:25:10 PST ---
I believe the change I'm going to make for https://bugs.webkit.org/show_bug.cgi?id=53716 will fix this as well. Basically changing Source/WebCore/bridge/jsc/BridgeJSC.cpp
From:
void Instance::willDestroyRuntimeObject(RuntimeObject* object)
{
ASSERT(m_rootObject);
ASSERT(m_rootObject->isValid());
m_rootObject->removeRuntimeObject(object);
m_runtimeObject.clear(object);
}
To:
void Instance::willDestroyRuntimeObject(RuntimeObject* object)
{
ASSERT(m_rootObject);
if (m_rootObject->isValid())
m_rootObject->removeRuntimeObject(object);
m_runtimeObject.clear(object);
}
--
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
More information about the webkit-unassigned
mailing list