Branch: refs/heads/main
Home: https://github.com/WebKit/WebKit
Commit: a93fdc429dd619b0d871107f570a1caa05a64615
https://github.com/WebKit/WebKit/commit/a93fdc429dd619b0d871107f570a1caa05a64615
Author: Rupin Mittal <[email protected]>
Date: 2026-05-24 (Sun, 24 May 2026)
Changed paths:
M Source/WTF/wtf/Assertions.h
Log Message:
-----------
Build fix: RELEASE_LOG_FAULT_WITH_PAYLOAD cannot pass in a CString to
WTFReportError
https://bugs.webkit.org/show_bug.cgi?id=315438
rdar://177802968
Reviewed by Ross Kirsling.
313687@main made it so that RELEASE_LOG_FAULT_WITH_PAYLOAD accepts a format
string
and variadic arguments for the data to be printed. So the MESSAGE_CHECK* macros
in
Connection.h were changed to pass in CStrings for accordingly. This broke
Playstation
builds, because there, RELEASE_LOG_FAULT_WITH_PAYLOAD eventually calls
WTFReportError,
which only takes non-trivial types.
We fix this by changing the RELEASE_LOG_FAULT_WITH_PAYLOAD that Playstation
uses to
pass its arguments through SAFE_PRINTF_TYPE like the others so that the CStrings
are converted to const char *.
We speculatively make the same fix for Android in case this is causing failures
there
as well.
* Source/WTF/wtf/Assertions.h:
Canonical link: https://commits.webkit.org/313807@main
To unsubscribe from these emails, change your notification settings at
https://github.com/WebKit/WebKit/settings/notifications