summaryrefslogtreecommitdiff
path: root/lib/fs.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/fs.js')
-rw-r--r--lib/fs.js10
1 files changed, 8 insertions, 2 deletions
diff --git a/lib/fs.js b/lib/fs.js
index d9d07401c5..d53c3605cf 100644
--- a/lib/fs.js
+++ b/lib/fs.js
@@ -1367,7 +1367,10 @@ ReadStream.prototype._emitData = function(d) {
ReadStream.prototype.destroy = function(cb) {
var self = this;
- if (!this.readable) return;
+ if (!this.readable) {
+ if (cb) process.nextTick(function() { cb(null); });
+ return;
+ }
this.readable = false;
function close() {
@@ -1570,7 +1573,10 @@ WriteStream.prototype.end = function(data, encoding, cb) {
WriteStream.prototype.destroy = function(cb) {
var self = this;
- if (!this.writable) return;
+ if (!this.writable) {
+ if (cb) process.nextTick(function() { cb(null); });
+ return;
+ }
this.writable = false;
function close() {