Fixes a 'Converting circular structure to JSON' TypeError.
This commit is contained in:
Ben Noordhuis 2012-08-23 16:03:46 +02:00
Родитель 1597ce0eb3
Коммит 422772f23b
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -375,7 +375,7 @@ Socket.prototype.destroy = function(exception) {
function onread(buffer, offset, length) {
var handle = this;
var self = handle.owner;
assert.equal(handle, self._handle);
assert(handle === self._handle, 'handle != self._handle');
timers.active(self);
@ -722,7 +722,7 @@ function afterConnect(status, handle, req, readable, writable) {
return;
}
assert.equal(handle, self._handle);
assert(handle === self._handle, 'handle != self._handle');
debug('afterConnect');