Chromium Code Reviews| Index: net/spdy/spdy_session_pool.cc |
| =================================================================== |
| --- net/spdy/spdy_session_pool.cc (revision 122608) |
| +++ net/spdy/spdy_session_pool.cc (working copy) |
| @@ -253,8 +253,9 @@ |
| address = address->ai_next; |
| SpdyAliasMap::const_iterator it = aliases_.find(endpoint); |
| - if (it == aliases_.end()) |
| + if (it == aliases_.end()) { |
| continue; |
| + } |
|
jar (doing other things)
2012/02/22 17:38:25
nit: No need to add this when there is only one li
Ryan Hamilton
2012/02/22 17:50:10
Whoops! I missed that before sending it to you.
|
| // We found an alias. |
| const HostPortProxyPair& alias_pair = it->second; |