Why does Plack::App::File do this: ``` open my $fh, "<:raw", $file or return $self->return_403; my @stat = stat $file; ``` Can't we stat $fh instead and not have a potential race there?