RESOLVED FIXED 210519
Use CFArrayGetValues() in createArchiveList() in WebCoreArgumentCodersMac.mm
https://bugs.webkit.org/show_bug.cgi?id=210519
Summary Use CFArrayGetValues() in createArchiveList() in WebCoreArgumentCodersMac.mm
David Kilzer (:ddkilzer)
Reported 2020-04-14 15:48:08 PDT
Use CFArrayGetValues() in createArchiveList() in WebCoreArgumentCodersMac.mm. Via Darin Adler in Bug 210448, Comment #4: Separately, I suggest we rewrite this using CFArrayGetValues, rather than calling CFArrayGetValueAtIndex over and over again in a loop. We will still have to loop over the buffer to convert tokenNull into nullptr, but it should be more efficient to do it that way rather than call CFArrayGetValueAtIndex over and over again.
Attachments
Patch v1 (1.82 KB, patch)
2020-04-14 16:07 PDT, David Kilzer (:ddkilzer)
darin: review+
David Kilzer (:ddkilzer)
Comment 1 2020-04-14 16:07:45 PDT
Created attachment 396472 [details] Patch v1
Darin Adler
Comment 2 2020-04-14 16:23:54 PDT
Comment on attachment 396472 [details] Patch v1 View in context: https://bugs.webkit.org/attachment.cgi?id=396472&action=review > Source/WebKit/Shared/mac/WebCoreArgumentCodersMac.mm:127 > + for (size_t i = 0; i < static_cast<size_t>(*objectCount); ++i) { This line should not have been changed. There’s no reason to cast this just so we can use a different type for the loop. CFIndex is fine.
David Kilzer (:ddkilzer)
Comment 3 2020-04-14 18:04:16 PDT
Comment on attachment 396472 [details] Patch v1 View in context: https://bugs.webkit.org/attachment.cgi?id=396472&action=review >> Source/WebKit/Shared/mac/WebCoreArgumentCodersMac.mm:127 >> + for (size_t i = 0; i < static_cast<size_t>(*objectCount); ++i) { > > This line should not have been changed. There’s no reason to cast this just so we can use a different type for the loop. CFIndex is fine. Will change back. I seem to recall there's a clang warning about using a signed type for an array index, which is why I changed it.
David Kilzer (:ddkilzer)
Comment 4 2020-04-14 18:08:51 PDT
Radar WebKit Bug Importer
Comment 5 2020-04-14 18:09:15 PDT
Note You need to log in before you can comment on or make changes to this bug.