From 6f21ac12827aab4e9c745442ea192ff8700161a4 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Tue, 23 Mar 2010 21:41:17 -0700 Subject: [PATCH] Don't free http parser for the client! Fixes test-http-client-race.js, test-http.js --- lib/http.js | 1 - 1 file changed, 1 deletion(-) 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(); -- 2.7.4