diff options
author | Brian White <mscdex@gmail.com> | 2012-07-22 23:08:13 -0300 |
---|---|---|
committer | Bert Belder <bertbelder@gmail.com> | 2012-07-23 11:35:52 +0200 |
commit | e06b5d7af7619e9234bb7eb8a9d66b3c7d245ad9 (patch) | |
tree | fc929bad2ecb91a84c6b1dca9c545acb2b175552 /lib | |
parent | bc30c90af65c482971901c7ec6980172d5f54849 (diff) | |
download | node-new-e06b5d7af7619e9234bb7eb8a9d66b3c7d245ad9.tar.gz |
http: remove duplicate assignments
Closes GH-3754
Diffstat (limited to 'lib')
-rw-r--r-- | lib/http.js | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/http.js b/lib/http.js index 01aa4ebde8..f7b2f786b6 100644 --- a/lib/http.js +++ b/lib/http.js @@ -1482,9 +1482,7 @@ ClientRequest.prototype.onSocket = function(socket) { parser.incoming = null; req.parser = parser; - parser.socket = socket; socket.parser = parser; - parser.incoming = null; socket._httpMessage = req; // Setup "drain" propogation. |