summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorThomas Mueller <thomas.mueller@tmit.eu>2013-01-06 23:43:02 +0100
committerThomas Mueller <thomas.mueller@tmit.eu>2013-01-06 23:43:02 +0100
commit01cecc9522c673fe87a5f561172166c4ed2f2a87 (patch)
tree57626311b88cd3cea2d610399427d8d9b6c368c2 /lib
parenta0d6f0e127ec0994f42f330ebf2b4155d01a7e39 (diff)
downloadnextcloud-server-01cecc9522c673fe87a5f561172166c4ed2f2a87.tar.gz
nextcloud-server-01cecc9522c673fe87a5f561172166c4ed2f2a87.zip
initialize $result
Diffstat (limited to 'lib')
-rw-r--r--lib/cache/apc.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/cache/apc.php b/lib/cache/apc.php
index 6dda0a0ff8c..895d307ea26 100644
--- a/lib/cache/apc.php
+++ b/lib/cache/apc.php
@@ -57,7 +57,7 @@ class OC_Cache_APC {
if(!function_exists('apc_exists')) {
function apc_exists($keys)
{
- $result;
+ $result=false;
apc_fetch($keys, $result);
return $result;
}