RESOLVED FIXED 214835
Update release*() functions on ExceptionOr() to always release the member
https://bugs.webkit.org/show_bug.cgi?id=214835
Summary Update release*() functions on ExceptionOr() to always release the member
Chris Dumez
Reported 2020-07-27 10:54:23 PDT
Update release*() functions on ExceptionOr() to always release the member, instead of simply doing a cast and leaving it up to the call site.
Attachments
Patch (5.30 KB, patch)
2020-07-27 12:22 PDT, Chris Dumez
no flags
Patch (5.21 KB, patch)
2020-07-27 13:07 PDT, Chris Dumez
no flags
Patch (19.74 KB, patch)
2020-07-27 14:54 PDT, Chris Dumez
no flags
Darin Adler
Comment 1 2020-07-27 11:01:55 PDT
In addition to this good change, I still think we might *also* want to add an assertion to make sure we never double-release.
Chris Dumez
Comment 2 2020-07-27 12:13:02 PDT
(In reply to Darin Adler from comment #1) > In addition to this good change, I still think we might *also* want to add > an assertion to make sure we never double-release. Working on it. I ran the tests and it actually found a bug :S
Chris Dumez
Comment 3 2020-07-27 12:22:47 PDT
Darin Adler
Comment 4 2020-07-27 13:00:57 PDT
Comment on attachment 405302 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=405302&action=review > Source/WebCore/dom/ExceptionOr.h:140 > + ASSERT(!m_wasReleased); > +#if ASSERT_ENABLED > + m_wasReleased = true; > +#endif I have a horrible/great idea: ASSERT(!std::exchnage(m_wasReleased, true));
Chris Dumez
Comment 5 2020-07-27 13:06:22 PDT
(In reply to Darin Adler from comment #4) > Comment on attachment 405302 [details] > Patch > > View in context: > https://bugs.webkit.org/attachment.cgi?id=405302&action=review > > > Source/WebCore/dom/ExceptionOr.h:140 > > + ASSERT(!m_wasReleased); > > +#if ASSERT_ENABLED > > + m_wasReleased = true; > > +#endif > > I have a horrible/great idea: > > ASSERT(!std::exchnage(m_wasReleased, true)); Not super readable but this is way more concise and avoid the #if. I'll do it.
Chris Dumez
Comment 6 2020-07-27 13:07:25 PDT
Darin Adler
Comment 7 2020-07-27 13:07:41 PDT
(In reply to Chris Dumez from comment #5) > Not super readable but this is way more concise and avoid the #if. I'll do > it. Glad you decided to use it. I guessed that you would see both the horrible side and the great side.
Chris Dumez
Comment 8 2020-07-27 14:08:38 PDT
Bots are not happy. Looks like this may have found another bug in IDB.
Chris Dumez
Comment 9 2020-07-27 14:21:52 PDT
(In reply to Chris Dumez from comment #8) > Bots are not happy. Looks like this may have found another bug in IDB. Or maybe not. I see the same IDB failures on another patch.. Tree is likely red.
Chris Dumez
Comment 10 2020-07-27 14:54:06 PDT
EWS
Comment 11 2020-07-27 17:05:10 PDT
Committed r264958: <https://trac.webkit.org/changeset/264958> All reviewed patches have been landed. Closing bug and clearing flags on attachment 405313 [details].
Radar WebKit Bug Importer
Comment 12 2020-07-27 17:06:26 PDT
Note You need to log in before you can comment on or make changes to this bug.