From: Ryan Dahl Date: Wed, 24 Mar 2010 04:41:17 +0000 (-0700) Subject: Don't free http parser for the client! X-Git-Tag: v0.1.92~68 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6f21ac12827aab4e9c745442ea192ff8700161a4;p=platform%2Fupstream%2Fnodejs.git Don't free http parser for the client! Fixes test-http-client-race.js, test-http.js --- diff --git a/lib/http.js b/lib/http.js index 404eefd..6fc42f0 100644 --- a/lib/http.js +++ b/lib/http.js @@ -574,7 +574,6 @@ function Client ( ) { self.addListener("end", function () { parser.finish(); - freeParser(parser); debug("self got end closing. readyState = " + self.readyState); self.close();