| Index: runtime/bin/chunked_stream.dart
|
| diff --git a/runtime/bin/chunked_stream.dart b/runtime/bin/chunked_stream.dart
|
| index 52adbb69b517cfcd7d424c67cde123200d5466cb..26602b75db75e532757af5225cd111cc43fe4625 100644
|
| --- a/runtime/bin/chunked_stream.dart
|
| +++ b/runtime/bin/chunked_stream.dart
|
| @@ -65,7 +65,7 @@ class _ChunkedInputStream implements ChunkedInputStream {
|
|
|
| void _closeHandler() {
|
| _inputClosed = true;
|
| - if (_bufferList.length == 0 && _clientCloseHandler) {
|
| + if (_bufferList.length == 0 && _clientCloseHandler !== null) {
|
| _clientCloseHandler();
|
| _closed = true;
|
| } else {
|
|
|