| Index: net/http/http_network_transaction.cc
|
| diff --git a/net/http/http_network_transaction.cc b/net/http/http_network_transaction.cc
|
| index 54d79f3ab78d9e6ac8c1a9cff8a60937652efc89..467eb940a65d7a6687b7085b3e9257f615036ab5 100644
|
| --- a/net/http/http_network_transaction.cc
|
| +++ b/net/http/http_network_transaction.cc
|
| @@ -929,7 +929,7 @@ int HttpNetworkTransaction::DoReadHeadersComplete(int result) {
|
| // We treat any other 1xx in this same way (although in practice getting
|
| // a 1xx that isn't a 100 is rare).
|
| if (response_.headers->response_code() / 100 == 1) {
|
| - response_.headers = new HttpResponseHeaders("");
|
| + response_.headers = new HttpResponseHeaders(std::string());
|
| next_state_ = STATE_READ_HEADERS;
|
| return OK;
|
| }
|
|
|