protect against database cache corruption

This commit is contained in:
Graham Knop 2008-03-13 22:32:33 +00:00
parent 87c18a48e6
commit 0451af48ea

View file

@ -107,7 +107,7 @@ sub get {
eval {
$content = thaw($content);
};
return undef unless $content;
return undef unless $content && ref $content;
return $$content;
}