Skip to content

Commit 6d27376

Browse files
committed
readline: clean up event listener in onNewListener
Once the Readline interface is closed, the 'data' event listener should be removed. Refs: #9447 (comment)
1 parent 5b50501 commit 6d27376

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

lib/readline.js

+1
Original file line numberDiff line numberDiff line change
@@ -1030,6 +1030,7 @@ function emitKeypressEvents(stream, iface) {
10301030
function onNewListener(event) {
10311031
if (event === 'keypress') {
10321032
stream.on('data', onData);
1033+
iface.once('close', () => { stream.removeListener('data', onData); });
10331034
stream.removeListener('newListener', onNewListener);
10341035
}
10351036
}

0 commit comments

Comments
 (0)