WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
181316
SVGAnimatedListPropertyTearOff::synchronizeWrappersIfNeeded() should do nothing if the property is not animating
https://bugs.webkit.org/show_bug.cgi?id=181316
Summary
SVGAnimatedListPropertyTearOff::synchronizeWrappersIfNeeded() should do nothi...
Said Abou-Hallawa
Reported
2018-01-04 20:36:44 PST
If SVGAnimatedListPropertyTearOff is not animating this means its m_animatedProperty is null. In this case SVGAnimatedListPropertyTearOff::synchronizeWrappersIfNeeded() should do nothing. Otherwise a crash will happen. SVGAnimatedListPropertyTearOff::synchronizeWrappersIfNeeded() can now be called from SVGAnimatedTypeAnimator::resetFromBaseValue() and a very intermittent crash with the following call stack was recorded: WebCore::SVGListProperty<WebCore::SVGTransformListValues>::values() WebCore::SVGAnimatedListPropertyTearOff<WebCore::SVGTransformListValues>::synchronizeWrappersIfNeeded() WebCore::SVGAnimatedTypeAnimator::resetFromBaseValue<WebCore::SVGAnimatedTransformListPropertyTearOff>() WebCore::SVGAnimatedTransformListAnimator::resetAnimValToBaseVal() WebCore::SVGAnimateElementBase::resetAnimatedType() The crash was happening because SVGAnimatedListPropertyTearOff::m_animatedProperty is null.
Attachments
Patch
(1.68 KB, patch)
2018-01-04 20:40 PST
,
Said Abou-Hallawa
no flags
Details
Formatted Diff
Diff
Patch
(3.51 KB, patch)
2018-01-05 10:27 PST
,
Said Abou-Hallawa
no flags
Details
Formatted Diff
Diff
Patch
(3.88 KB, patch)
2018-01-05 11:05 PST
,
Said Abou-Hallawa
no flags
Details
Formatted Diff
Diff
Show Obsolete
(2)
View All
Add attachment
proposed patch, testcase, etc.
Said Abou-Hallawa
Comment 1
2018-01-04 20:40:03 PST
<
rdar://problem/36147545
>
Said Abou-Hallawa
Comment 2
2018-01-04 20:40:54 PST
Created
attachment 330518
[details]
Patch
Said Abou-Hallawa
Comment 3
2018-01-05 10:27:16 PST
Created
attachment 330556
[details]
Patch
Simon Fraser (smfr)
Comment 4
2018-01-05 10:31:00 PST
Comment on
attachment 330556
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=330556&action=review
> Source/WebCore/ChangeLog:9 > + This is a speculative change to fix a crash which appeared after
r226065
.
This should say why there is no testcase.
> Source/WebCore/svg/properties/SVGAnimatedListPropertyTearOff.h:147 > ASSERT(isAnimating()); > + if (!isAnimating())
We normally avoid patterns like this. If you think the assert and the if() are both needed, then add a comment saying "this should never happen, but we've seen it in the field. Please comment in bug ### i you hit this" or something.
Said Abou-Hallawa
Comment 5
2018-01-05 11:05:15 PST
Created
attachment 330559
[details]
Patch
WebKit Commit Bot
Comment 6
2018-01-05 12:10:48 PST
Comment on
attachment 330559
[details]
Patch Clearing flags on attachment: 330559 Committed
r226457
: <
https://trac.webkit.org/changeset/226457
>
WebKit Commit Bot
Comment 7
2018-01-05 12:10:50 PST
All reviewed patches have been landed. Closing bug.
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug