diff options
Diffstat (limited to 'net/spdy/spdy_http_utils.cc')
-rw-r--r-- | net/spdy/spdy_http_utils.cc | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/net/spdy/spdy_http_utils.cc b/net/spdy/spdy_http_utils.cc index 49fb8ca..41647c1 100644 --- a/net/spdy/spdy_http_utils.cc +++ b/net/spdy/spdy_http_utils.cc @@ -188,9 +188,8 @@ GURL GetUrlFromHeaderBlock(const SpdyHeaderBlock& headers, if (it != headers.end()) path = it->second; - std::string url = (scheme.empty() || host_port.empty() || path.empty()) - ? std::string() - : scheme + "://" + host_port + path; + std::string url = (scheme.empty() || host_port.empty() || path.empty()) + ? "" : scheme + "://" + host_port + path; return GURL(url); } |