summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/_stream_readable.js7
-rw-r--r--lib/internal/fs/streams.js3
-rw-r--r--test/parallel/test-stream-readable-destroy.js9
-rw-r--r--test/parallel/test-wrap-js-stream-exceptions.js2
4 files changed, 14 insertions, 7 deletions
diff --git a/lib/_stream_readable.js b/lib/_stream_readable.js
index 7502a1ac2c..2dc1323f09 100644
--- a/lib/_stream_readable.js
+++ b/lib/_stream_readable.js
@@ -490,9 +490,10 @@ Readable.prototype.read = function(n) {
debug('length less than watermark', doRead);
}
- // However, if we've ended, then there's no point, and if we're already
- // reading, then it's unnecessary.
- if (state.ended || state.reading) {
+ // However, if we've ended, then there's no point, if we're already
+ // reading, then it's unnecessary, and if we're destroyed, then it's
+ // not allowed.
+ if (state.ended || state.reading || state.destroyed) {
doRead = false;
debug('reading or ended', doRead);
} else if (doRead) {
diff --git a/lib/internal/fs/streams.js b/lib/internal/fs/streams.js
index d51fbb1b58..b0c4224893 100644
--- a/lib/internal/fs/streams.js
+++ b/lib/internal/fs/streams.js
@@ -137,9 +137,6 @@ ReadStream.prototype._read = function(n) {
});
}
- if (this.destroyed)
- return;
-
if (!pool || pool.length - pool.used < kMinPoolSpace) {
// Discard the old pool.
allocNewPool(this.readableHighWaterMark);
diff --git a/test/parallel/test-stream-readable-destroy.js b/test/parallel/test-stream-readable-destroy.js
index 05e7dd464d..7687ea90cc 100644
--- a/test/parallel/test-stream-readable-destroy.js
+++ b/test/parallel/test-stream-readable-destroy.js
@@ -189,3 +189,12 @@ const assert = require('assert');
read.push('hi');
read.on('data', common.mustNotCall());
}
+
+{
+ const read = new Readable({
+ read: common.mustNotCall(function() {})
+ });
+ read.destroy();
+ assert.strictEqual(read.destroyed, true);
+ read.read();
+}
diff --git a/test/parallel/test-wrap-js-stream-exceptions.js b/test/parallel/test-wrap-js-stream-exceptions.js
index cde7c17844..eeab26f525 100644
--- a/test/parallel/test-wrap-js-stream-exceptions.js
+++ b/test/parallel/test-wrap-js-stream-exceptions.js
@@ -10,7 +10,7 @@ process.once('uncaughtException', common.mustCall((err) => {
}));
const socket = new JSStreamWrap(new Duplex({
- read: common.mustCall(),
+ read: common.mustNotCall(),
write: common.mustCall((buffer, data, cb) => {
throw new Error('exception!');
})