RESOLVED FIXED 219483
[WTF] Avoid JSONValue::create with raw string falling to bool overload
https://bugs.webkit.org/show_bug.cgi?id=219483
Summary [WTF] Avoid JSONValue::create with raw string falling to bool overload
Lauro Moura
Reported 2020-12-02 22:03:40 PST
[WTF] Avoid JSONValue::create with raw string falling to bool overload
Attachments
Patch (6.77 KB, patch)
2020-12-02 22:05 PST, Lauro Moura
no flags
Lauro Moura
Comment 1 2020-12-02 22:05:11 PST
Lauro Moura
Comment 2 2020-12-02 22:22:26 PST
Comment on attachment 415278 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=415278&action=review > Source/WTF/wtf/JSONValues.h:81 > + static Ref<Value> create(T) = delete; If `create(T)` is too strict, it could use `create(T*)` instead, to avoid only the pointer conversions.
Adrian Perez
Comment 3 2020-12-03 02:09:38 PST
Comment on attachment 415278 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=415278&action=review >> Source/WTF/wtf/JSONValues.h:81 >> + static Ref<Value> create(T) = delete; > > If `create(T)` is too strict, it could use `create(T*)` instead, to avoid only the pointer conversions. I think this is fine, and forbidding all possible implicit conversions is probably even a good thing, thus ensuring that only the provided create() factory functions are ever used.
EWS
Comment 4 2020-12-03 02:30:42 PST
Committed r270391: <https://trac.webkit.org/changeset/270391> All reviewed patches have been landed. Closing bug and clearing flags on attachment 415278 [details].
Radar WebKit Bug Importer
Comment 5 2020-12-03 02:31:41 PST
Note You need to log in before you can comment on or make changes to this bug.