[Webkit-unassigned] [Bug 127421] [curl] Improve realm string parsing in WWW-Authenticate headers
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Wed Jan 22 09:56:46 PST 2014
https://bugs.webkit.org/show_bug.cgi?id=127421
--- Comment #2 from Brent Fulgham <bfulgham at webkit.org> 2014-01-22 09:54:16 PST ---
(From update of attachment 221852)
View in context: https://bugs.webkit.org/attachment.cgi?id=221852&action=review
Looks good. I have a couple of minor comments for your consideration.
> Source/WebCore/platform/network/curl/ResourceHandleManager.cpp:351
> String authHeader = response.httpHeaderField("WWW-Authenticate");
I just noticed that this could probably be const, since we aren't modifying it.
> Source/WebCore/platform/network/curl/ResourceHandleManager.cpp:358
> + if (realm.startsWith('"') && realm.endsWith('"') && realm.length() > 1)
What happens if we get the input ""? Are we supposed to create a protection space for the "" realm? Or should we be bailing out early?
> Source/WebCore/platform/network/curl/ResourceHandleManager.cpp:359
> + realm = realm.substring(1, realm.length()-2);
This might be clearer if it were wrapped up as a little function:
static void removeLeadingAndTrailingQuotes(String& value) ...
--
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
More information about the webkit-unassigned
mailing list