mirror of https://github.com/nodejs/node.git
http: Don't dump twice
parent
e26622bd18
commit
faf78604ca
|
@ -409,6 +409,9 @@ IncomingMessage.prototype._addHeaderLine = function(field, value) {
|
||||||
// Call this instead of resume() if we want to just
|
// Call this instead of resume() if we want to just
|
||||||
// dump all the data to /dev/null
|
// dump all the data to /dev/null
|
||||||
IncomingMessage.prototype._dump = function() {
|
IncomingMessage.prototype._dump = function() {
|
||||||
|
if (this._dumped)
|
||||||
|
return;
|
||||||
|
|
||||||
this._dumped = true;
|
this._dumped = true;
|
||||||
this.socket.parser.incoming = null;
|
this.socket.parser.incoming = null;
|
||||||
this.push(null);
|
this.push(null);
|
||||||
|
|
Loading…
Reference in New Issue