Client.onend: Anticipate that the HTTP parser object is uninitialized when the client setup failed.

This commit is contained in:
Ben Noordhuis 2010-08-02 11:59:58 +02:00 коммит произвёл Ryan Dahl
Родитель d9fbb8a580
Коммит 4b19bd2896
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -916,7 +916,7 @@ function Client ( ) {
});
self.onend = function () {
parser.finish();
if (parser) parser.finish();
debug("self got end closing. readyState = " + self.readyState);
self.end();
};