RESOLVED FIXED226112
Make CGColorSpaceRef argument coding match other CF objects and use CGColorSpaceCreateWithPropertyList for fallback
https://bugs.webkit.org/show_bug.cgi?id=226112
Summary Make CGColorSpaceRef argument coding match other CF objects and use CGColorSp...
Sam Weinig
Reported 2021-05-21 14:14:30 PDT
Make CGColorSpaceRef argument coding match other CF objects and use CGColorSpaceCreateWithPropertyList for fallback
Attachments
Patch (55.59 KB, patch)
2021-05-21 14:19 PDT, Sam Weinig
no flags
Patch (55.54 KB, patch)
2021-05-21 14:21 PDT, Sam Weinig
no flags
Patch (56.19 KB, patch)
2021-05-21 17:18 PDT, Sam Weinig
ews-feeder: commit-queue-
Patch (56.16 KB, patch)
2021-05-21 18:04 PDT, Sam Weinig
no flags
Sam Weinig
Comment 1 2021-05-21 14:19:43 PDT Comment hidden (obsolete)
Sam Weinig
Comment 2 2021-05-21 14:21:54 PDT
Darin Adler
Comment 3 2021-05-21 15:51:05 PDT
Comment on attachment 429341 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=429341&action=review > Source/WebKit/Shared/cf/ArgumentCodersCF.cpp:700 > + auto propertyList = adoptCF(CGColorSpaceCopyPropertyList(colorSpace)); > + encoder << CGColorSpaceEncodingScheme::PropertyList; > + encoder << propertyList; No need for this local variable. Maybe we can write this? encoder << CGColorSpaceEncodingScheme::PropertyList << adoptCF(CGColorSpaceCopyPropertyList(colorSpace));
Sam Weinig
Comment 4 2021-05-21 17:18:47 PDT
Sam Weinig
Comment 5 2021-05-21 18:04:12 PDT
EWS
Comment 6 2021-05-21 19:23:50 PDT
Committed r277906 (238039@main): <https://commits.webkit.org/238039@main> All reviewed patches have been landed. Closing bug and clearing flags on attachment 429379 [details].
Radar WebKit Bug Importer
Comment 7 2021-05-21 19:24:19 PDT
Note You need to log in before you can comment on or make changes to this bug.