Skip to content

Commit

Permalink
Merge pull request haad#28 from pocographdotcom/master
Browse files Browse the repository at this point in the history
Chromium tried to close our pipes and falls into infinity loop.
  • Loading branch information
rofl0r committed Jan 8, 2014
2 parents e2af2f2 + ecbd735 commit 582b3ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libproxychains.c
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ int close(int fd) {
fd != resp_pipefd[0] && fd != resp_pipefd[1]) {
return true_close(fd);
}
errno = EINTR;
errno = EBADF;
return -1;
}

Expand Down

0 comments on commit 582b3ce

Please sign in to comment.