Bug 225570 - Remove uses of the WTF::String::toInt family of functions from WebKit framework sources
Summary: Remove uses of the WTF::String::toInt family of functions from WebKit framewo...
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: WebKit Misc. (show other bugs)
Version: WebKit Nightly Build
Hardware: All All
: P2 Normal
Assignee: Darin Adler
URL:
Keywords: InRadar
Depends on:
Blocks:
 
Reported: 2021-05-08 18:03 PDT by Darin Adler
Modified: 2021-05-08 21:10 PDT (History)
5 users (show)

See Also:


Attachments
Patch (14.38 KB, patch)
2021-05-08 18:18 PDT, Darin Adler
sam: review+
darin: commit-queue-
Details | Formatted Diff | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Darin Adler 2021-05-08 18:03:47 PDT
Remove uses of the WTF::String::toInt family of functions from WebKit framework sources
Comment 1 Darin Adler 2021-05-08 18:18:47 PDT
Created attachment 428104 [details]
Patch
Comment 2 Sam Weinig 2021-05-08 19:13:58 PDT
Comment on attachment 428104 [details]
Patch

View in context: https://bugs.webkit.org/attachment.cgi?id=428104&action=review

> Source/WebKit/Shared/EntryPointUtilities/Cocoa/XPCService/XPCServiceEntryPoint.mm:88
> -    clientSDKVersion = charactersToUIntStrict(reinterpret_cast<const LChar*>(string), string ? std::strlen(string) : 0, &ok);
> -    return ok;
> +    auto version = parseIntegerAllowingTrailingJunk<uint32_t>(xpc_dictionary_get_string(m_initializerMessage, "client-sdk-version"));
> +    clientSDKVersion = version.valueOr(0);
> +    return version.hasValue();

It's not immediately clear to me why the AllowingTrailingJunk version is needed here.
Comment 3 Darin Adler 2021-05-08 20:42:57 PDT
Comment on attachment 428104 [details]
Patch

View in context: https://bugs.webkit.org/attachment.cgi?id=428104&action=review

>> Source/WebKit/Shared/EntryPointUtilities/Cocoa/XPCService/XPCServiceEntryPoint.mm:88
>> +    return version.hasValue();
> 
> It's not immediately clear to me why the AllowingTrailingJunk version is needed here.

Oops, a mistake. Will fix before landing.
Comment 4 Darin Adler 2021-05-08 21:09:25 PDT
Committed r277239 (237508@main): <https://commits.webkit.org/237508@main>
Comment 5 Radar WebKit Bug Importer 2021-05-08 21:10:16 PDT
<rdar://problem/77704010>