http: fix free http-parser too early

when the status code is 100 (Continue).

Fixes #2636.
This commit is contained in:
koichik 2012-01-31 00:16:01 +09:00
parent b221fe9b29
commit 3fd13c6426
2 changed files with 8 additions and 2 deletions

View File

@ -1169,7 +1169,11 @@ ClientRequest.prototype.onSocket = function(socket) {
socket.destroy();
}
freeParser();
} else if (parser.incoming && parser.incoming.complete) {
} else if (parser.incoming && parser.incoming.complete &&
// When the status code is 100 (Continue), the server will
// send a final response after this client sends a request
// body. So, we must not free the parser.
parser.incoming.statusCode !== 100) {
freeParser();
}
};

View File

@ -44,7 +44,9 @@ server.on('checkContinue', function(req, res) {
common.debug('Server got Expect: 100-continue...');
res.writeContinue();
sent_continue = true;
handler(req, res);
setTimeout(function() {
handler(req, res);
}, 100);
});
server.listen(common.PORT);