Add another missing return after a callback

pull/11515/head
murgatroid99 8 years ago
parent d58cfb078c
commit 8e7a95d67c
  1. 1
      src/node/src/client.js

@ -165,6 +165,7 @@ function _write(chunk, encoding, callback) {
this.call.cancelWithStatus(constants.status.INTERNAL,
'Serialization failure');
callback(e);
return;
}
if (_.isFinite(encoding)) {
/* Attach the encoding if it is a finite number. This is the closest we

Loading…
Cancel
Save