| Index: net/spdy/write_blocked_list.h
|
| diff --git a/net/spdy/write_blocked_list.h b/net/spdy/write_blocked_list.h
|
| index bb3bcfff60e81228c5856ea3c3575afb9af4ddeb..32ed19c98d8a403f5771ec25d5239bd4c167743b 100644
|
| --- a/net/spdy/write_blocked_list.h
|
| +++ b/net/spdy/write_blocked_list.h
|
| @@ -45,8 +45,9 @@ class WriteBlockedList {
|
| // Returns the priority of the highest priority list with sessions on it.
|
| SpdyPriority GetHighestPriorityWriteBlockedList() const {
|
| for (SpdyPriority i = 0; i <= kLowestPriority; ++i) {
|
| - if (write_blocked_lists_[i].size() > 0)
|
| + if (write_blocked_lists_[i].size() > 0) {
|
| return i;
|
| + }
|
| }
|
| LOG(DFATAL) << "No blocked streams";
|
| return kHighestPriority;
|
|
|