Index: net/spdy/spdy_session.cc |
diff --git a/net/spdy/spdy_session.cc b/net/spdy/spdy_session.cc |
index 575cee20b83857cf21fddef8d7a94b5ae99a8f23..a6478dff29bf0421620e089515f6616cebfa3072 100644 |
--- a/net/spdy/spdy_session.cc |
+++ b/net/spdy/spdy_session.cc |
@@ -450,8 +450,8 @@ void SplitPushedHeadersToRequestAndResponse(const SpdyHeaderBlock& headers, |
to_insert = request_headers; |
} else { |
const char* host = protocol_version >= SPDY4 ? ":authority" : ":host"; |
- static const char* scheme = ":scheme"; |
- static const char* path = ":path"; |
+ static const char scheme[] = ":scheme"; |
+ static const char path[] = ":path"; |
if (it->first == host || it->first == scheme || it->first == path) |
to_insert = request_headers; |
} |