http: fix duplicate var initialization

IncomingMessage function contained duplicate initialization
of this._pendings. Line with one of those expressions has been
removed.
pull/24504/head
Alexandr Emelin 2013-01-10 11:38:29 +04:00 committed by Ben Noordhuis
parent bc764f3dff
commit eef0ccbcaf
1 changed files with 0 additions and 1 deletions

View File

@ -289,7 +289,6 @@ function IncomingMessage(socket) {
// XXX This implementation is kind of all over the place
// When the parser emits body chunks, they go in this list.
// _read() pulls them out, and when it finds EOF, it ends.
this._pendings = [];
this.socket = socket;
this.connection = socket;