| Index: chrome/browser/net/url_fixer_upper.cc
|
| ===================================================================
|
| --- chrome/browser/net/url_fixer_upper.cc (revision 13340)
|
| +++ chrome/browser/net/url_fixer_upper.cc (working copy)
|
| @@ -31,6 +31,9 @@
|
| url_parse::Component UTF8ComponentToWideComponent(
|
| string text_utf8,
|
| const url_parse::Component& component_utf8) {
|
| + if (component_utf8.len == -1)
|
| + return url_parse::Component();
|
| +
|
| string before_component_string = text_utf8.substr(0, component_utf8.begin);
|
| string component_string = text_utf8.substr(component_utf8.begin,
|
| component_utf8.len);
|
|
|