Subject: | validation for hash entrys not complete |
I think I found a bug in sub deurl of CGI::Deurl .
If ref $hash->{$name} is no array reference the programm will die.
This may happens if there is a filehandle in $hash->{$name}.
patch file is appended.
Best Regards,
Andreas 'ac0v' Specht
Subject: | deurl.patch |
368c368
< if (ref $hash->{$name}) {
---
> if (ref $hash->{$name} eq 'ARRAY') {