| Index: net/spdy/write_blocked_list.h
|
| diff --git a/net/spdy/write_blocked_list.h b/net/spdy/write_blocked_list.h
|
| index e936402a8342474450917f245d8864b16ae76cee..f0ac86a2daca82d1edcbfcfcbae17e629495b7d6 100644
|
| --- a/net/spdy/write_blocked_list.h
|
| +++ b/net/spdy/write_blocked_list.h
|
| @@ -87,8 +87,7 @@ class WriteBlockedList {
|
| // would be too costly, so instead we check here to eliminate duplicates.
|
| bool found = false;
|
| iterator it = std::find(write_blocked_lists_[priority].begin(),
|
| - write_blocked_lists_[priority].end(),
|
| - stream_id);
|
| + write_blocked_lists_[priority].end(), stream_id);
|
| while (it != write_blocked_lists_[priority].end()) {
|
| found = true;
|
| iterator next_it = write_blocked_lists_[priority].erase(it);
|
|
|