Skip to content

Commit

Permalink
Merge pull request #271 from hflzh/master
Browse files Browse the repository at this point in the history
Fix NullPointerException in PosixPtyTerminal#resume()
  • Loading branch information
gnodet authored May 22, 2018
2 parents 557500c + 21f5d70 commit 9302947
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ public void resume() {
inputPumpThread.start();
}
if (outputPumpThread == null) {
inputPumpThread = new Thread(this::pumpOut, toString() + " output pump thread");
outputPumpThread = new Thread(this::pumpOut, toString() + " output pump thread");
outputPumpThread.setDaemon(true);
outputPumpThread.start();
}
Expand Down

0 comments on commit 9302947

Please sign in to comment.