Subject: | files with leading spaces can't be checksumed. |
I was the maintainer of the fedora package for this module for a while
(before it got included in the base perl package) and got this bug report:
https://bugzilla.redhat.com/show_bug.cgi?id=478939
Which to summarize quickly is a problem with this line:
120: open(FH, "< $file\0") or _bail("Open failed");
when $file is pointing to a file that contains a leading space (which
open will eat). The easy fix would be to use open(FH, "<", $file); instead.