Skip to content

Commit

Permalink
tty: fix TypeError when stream is closed
Browse files Browse the repository at this point in the history
Fixes: #41330
PR-URL: #43803
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
  • Loading branch information
aduh95 committed Aug 24, 2022
1 parent cb15fc5 commit ab89024
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion lib/tty.js
Expand Up @@ -72,7 +72,7 @@ ObjectSetPrototypeOf(ReadStream, net.Socket);

ReadStream.prototype.setRawMode = function(flag) {
flag = !!flag;
const err = this._handle.setRawMode(flag);
const err = this._handle?.setRawMode(flag);
if (err) {
this.emit('error', errors.errnoException(err, 'setRawMode'));
return this;
Expand Down
9 changes: 9 additions & 0 deletions test/parallel/test-repl-stdin-push-null.js
@@ -0,0 +1,9 @@
'use strict';
const common = require('../common');

if (!process.stdin.isTTY) {
common.skip('does not apply on non-TTY stdin');
}

process.stdin.destroy();
process.stdin.setRawMode(true);

0 comments on commit ab89024

Please sign in to comment.