From 01cecc9522c673fe87a5f561172166c4ed2f2a87 Mon Sep 17 00:00:00 2001
From: Thomas Mueller <thomas.mueller@tmit.eu>
Date: Sun, 6 Jan 2013 23:43:02 +0100
Subject: [PATCH] initialize $result

---
 lib/cache/apc.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/cache/apc.php b/lib/cache/apc.php
index 6dda0a0ff8..895d307ea2 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;
 	}
-- 
GitLab