Skip to content

Commit

Permalink
Merge pull request FEX-Emu#4062 from Sonicadvance1/fix_fexserver_writ…
Browse files Browse the repository at this point in the history
…ing_to_pipe

FEXServer/PipeScanner: Stop writing null to incoming pipes
  • Loading branch information
Sonicadvance1 authored Sep 11, 2024
2 parents f20e626 + e8b51ac commit 0a35029
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions Source/Tools/FEXServer/PipeScanner.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,6 @@ void ScanForPipes() {

void ClosePipes() {
for (auto pipe : IncomingPipes) {
int Null {0};
write(pipe, &Null, sizeof(Null));
close(pipe);
}
IncomingPipes.clear();
Expand Down

0 comments on commit 0a35029

Please sign in to comment.