From 36028caf8c166803babf55c140adbd6ce094d198 Mon Sep 17 00:00:00 2001 From: Nikolai Vavilov Date: Sun, 16 Sep 2018 22:47:17 +0300 Subject: [PATCH] tty: handle setRawMode errors PR-URL: https://github.com/nodejs/node/pull/22886 Refs: https://github.com/nodejs/node/issues/21773 Reviewed-By: Anna Henningsen Reviewed-By: Jeremiah Senkpiel Reviewed-By: Colin Ihrig --- lib/tty.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lib/tty.js b/lib/tty.js index b36adf2534c326..abeaf508bf76ca 100644 --- a/lib/tty.js +++ b/lib/tty.js @@ -63,7 +63,11 @@ inherits(ReadStream, net.Socket); ReadStream.prototype.setRawMode = function(flag) { flag = !!flag; - this._handle.setRawMode(flag); + const err = this._handle.setRawMode(flag); + if (err) { + this.emit('error', errors.errnoException(err, 'setRawMode')); + return; + } this.isRaw = flag; };