Subject: | addFileOrDirectory has typo in regexp for pathnames |
In the file Archive/Zip/Archive.pm, in the function addFileOrDirectory,
the following regexp is used:
( $newName =~ s{[^/]$}{&/} ) if $newName;
The "&" should be a "$&". As it is the regexp just replaces the last
character of the pathname with a literal ampersand.