RESOLVED FIXED162516
Refactor URLParser
https://bugs.webkit.org/show_bug.cgi?id=162516
Summary Refactor URLParser
Alex Christensen
Reported 2016-09-23 15:19:02 PDT
Refactor URLParser
Attachments
Patch (32.36 KB, patch)
2016-09-23 15:21 PDT, Alex Christensen
beidson: review+
Alex Christensen
Comment 1 2016-09-23 15:21:34 PDT
Brady Eidson
Comment 2 2016-09-23 15:26:14 PDT
Comment on attachment 289714 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=289714&action=review > Source/WebCore/platform/URLParser.cpp:432 > - return *iterator == ':' || *iterator == '|'; > + if (*iterator == ':') > + return true; > + if (*iterator == '|') > + return true; > + return false; Why this change? Was fine the old way.
Alex Christensen
Comment 3 2016-09-23 15:33:19 PDT
That change will be needed soon. One is a syntax error and one is not.
Alex Christensen
Comment 4 2016-09-23 15:34:56 PDT
Note You need to log in before you can comment on or make changes to this bug.