Bump CxxUrl to v0.3 to fix a URL parsing bug, as suggested by Russell
McClellan.
Fixes #941.
=== src/third_party/url.*
-CxxUrl - A simple C++ URL class. Copied from CxxUrl v0.2 downloaded from
+CxxUrl - A simple C++ URL class. Copied from CxxUrl v0.3 downloaded from
<https://github.com/chmike/CxxUrl>. It has the following license text:
----
p=find_char(b, ea, '@');
// get user info if any
if (p!=ea) {
- if (!is_chars(b, p, 0x05))
+ if (!is_chars(b, p, 0x25))
throw Url::parse_error("User info in '"+std::string(s,e-s)+"' is invalid");
user_b=b;
user_e=p;