Skip to content

Commit 13782a1

Browse files
dotchevalexpenev-s
authored andcommittedJan 29, 2018
Fix crash in onerror (#117)
Fixes #116
1 parent e4059af commit 13782a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎lib/protocol/Connection.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ Connection.prototype._addListeners = function _addListeners(socket) {
226226
socket.on('data', ondata);
227227

228228
function onerror(err) {
229-
var cb = self._state.receive;
229+
var cb = self._state && self._state.receive;
230230
if (cb) {
231231
self._state.receive = null; // a callback should be called only once
232232
cb(err);

0 commit comments

Comments
 (0)
Please sign in to comment.