Skip to content

Commit

Permalink
give a hint in the code, that the double operation is on purpose
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianschroeter committed Mar 29, 2018
1 parent c1698c9 commit 53686db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Build/Deb.pm
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ sub uncompress {
die("fork: $!\n") unless defined $pid;
if (!$pid) {
open(STDIN, "<&TMP");
seek(STDIN, 0, 0);
seek(STDIN, 0, 0); # these two lines are a workaround for a perl bug mixing up FD
sysseek(STDIN, 0, 0);
exec($tool);
die("$tool: $!\n");
Expand Down

0 comments on commit 53686db

Please sign in to comment.