Subject: | Incorrect check for defined value in AUTOLOAD method |
The AUTOLOAD code in Config::General::Extended has an incorrect test for
the existance of $value:
if ($value) {
It should be
if (defined $value) {
(as it is in the value() method). This leads to the inability to set a
value to a anything which doesn't return a true value (such as 0 or the
empty string)