initialize $result

This commit is contained in:
Thomas Mueller 2013-01-06 23:43:02 +01:00
parent a0d6f0e127
commit 01cecc9522
1 changed files with 1 additions and 1 deletions

2
lib/cache/apc.php vendored
View File

@ -57,7 +57,7 @@ class OC_Cache_APC {
if(!function_exists('apc_exists')) { if(!function_exists('apc_exists')) {
function apc_exists($keys) function apc_exists($keys)
{ {
$result; $result=false;
apc_fetch($keys, $result); apc_fetch($keys, $result);
return $result; return $result;
} }