Changeset 271282 in webkit
- Timestamp:
- Jan 7, 2021, 7:58:06 PM (6 years ago)
- Location:
- trunk/Source/WebKit
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
Platform/IPC/Connection.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit/ChangeLog
r271279 r271282 1 2021-01-07 Alex Christensen <achristensen@webkit.org> 2 3 Remove assertions in MESSAGE_CHECK definition 4 https://bugs.webkit.org/show_bug.cgi?id=220401 5 6 * Platform/IPC/Connection.h: 7 The unit test associated with r271263 hits these assertions in debug builds. 8 Since we plan to increase this type of unit testing, I remove the assertions. 9 1 10 2021-01-07 Mark Lam <mark.lam@apple.com> 2 11 -
trunk/Source/WebKit/Platform/IPC/Connection.h
r270573 r271282 81 81 82 82 #define MESSAGE_CHECK_COMPLETION_BASE(assertion, connection, completion) do { \ 83 ASSERT(assertion); \84 83 if (UNLIKELY(!(assertion))) { \ 85 84 (connection)->markCurrentlyDispatchedMessageAsInvalid(); \ … … 90 89 91 90 #define MESSAGE_CHECK_WITH_RETURN_VALUE_BASE(assertion, connection, returnValue) do { \ 92 ASSERT(assertion); \93 91 if (UNLIKELY(!(assertion))) { \ 94 92 (connection)->markCurrentlyDispatchedMessageAsInvalid(); \
Note:
See TracChangeset
for help on using the changeset viewer.