Subject: | Another Warning |
Use of uninitialized value in bitwise and (&) at /usr/local/share/perl/5.8.4/Text/German/Endung.pm line 52.
Patch is:
replace
if (defined $ENDUNG{$endung}
and ($ENDUNG{$endung}->[1] & $class)) {
with
if (defined $ENDUNG{$endung} && defined $ENDUNG{$endung}->[1]
and ($ENDUNG{$endung}->[1] & $class)) {