closing STDIN did something weird, don't do it.

This commit is contained in:
Bradley M. Kuhn 2016-04-28 20:32:42 -07:00
parent 0f7eae3318
commit 50d747db0f

View file

@ -133,7 +133,7 @@ while (my $line = <STDIN>) {
die "badly formatted commit ID: $line" unless $line =~ /^[a-z0-9]{40,40}$/;
$WHITELIST_COMMIT_IDS{$line} = $line;
}
close STDIN;
##############################################################################
# ProcessCommit is the primary function that processes a commit to generate
# the blame data. If $fileListRef is defined, it should be a list reference,