Chromium Code Reviews| Index: net/spdy/spdy_framer.cc |
| diff --git a/net/spdy/spdy_framer.cc b/net/spdy/spdy_framer.cc |
| index 9a3203b0ee6b6b36cdb9495293c65e39fcd64be8..5f46a97c30388cd366d43e965598a85bb3d1f6c9 100644 |
| --- a/net/spdy/spdy_framer.cc |
| +++ b/net/spdy/spdy_framer.cc |
| @@ -793,6 +793,9 @@ size_t SpdyFramer::ProcessDataFramePayload(const char* data, size_t len) { |
| visitor_->OnStreamFrameData(current_data_frame.stream_id(), NULL, 0); |
| CleanupDecompressorForStream(current_data_frame.stream_id()); |
| } |
| + } else if (current_data_frame.flags() & DATA_FLAG_FIN) { |
|
willchan no longer on Chromium
2011/03/02 18:44:40
Someone else will have to verify this change is ok
Satish
2011/03/03 13:50:10
I reverted this change as mentioned above.
|
| + visitor_->OnStreamFrameData(current_data_frame.stream_id(), NULL, 0); |
| + CleanupDecompressorForStream(current_data_frame.stream_id()); |
| } else { |
| CHANGE_STATE(SPDY_AUTO_RESET); |
| } |