unconditionally fix pc50 unitialised variable
[spider.git] / perl / DXDb.pm
index 0f30e5b05b423d31d698c0700b4c21353525e39f..50148ee2a6d47c0c55a4a87d32707d13a7ba3ca5 100644 (file)
@@ -76,7 +76,7 @@ sub load
 {
        my $s = readfilestr($dbbase, "dbs", "pl");
        if ($s) {
-               my $a = { eval $s } ;
+               my $a = eval $s;
                confess $@ if $@;
                %avail = %{$a} if $a
        }