Ævar Arnfjörð Bjarmason <ava...@gmail.com> wrote:
> See https://public-inbox.org/git/86h8oobl36....@phe.ftfl.ca/ for the
> original report.

Thanks for taking a look at this.  Also https://bugs.debian.org/894997

> --- a/perl/Git.pm
> +++ b/perl/Git.pm
> @@ -554,7 +554,7 @@ sub get_record {
>       my ($fh, $rs) = @_;
>       local $/ = $rs;
>       my $rec = <$fh>;
> -     chomp $rec if defined $rs;
> +     chomp $rec if defined $rs and defined $rec;

I'm struggling to understand the reason for the "defined $rs"
check.  I think it was a braino on my part and meant to use:

        chomp $rec if defined $rec;

Reply via email to