diff options
author | Thomas Mueller <thomas.mueller@tmit.eu> | 2013-01-06 23:43:02 +0100 |
---|---|---|
committer | Thomas Mueller <thomas.mueller@tmit.eu> | 2013-01-06 23:43:02 +0100 |
commit | 01cecc9522c673fe87a5f561172166c4ed2f2a87 (patch) | |
tree | 57626311b88cd3cea2d610399427d8d9b6c368c2 /lib | |
parent | a0d6f0e127ec0994f42f330ebf2b4155d01a7e39 (diff) | |
download | nextcloud-server-01cecc9522c673fe87a5f561172166c4ed2f2a87.tar.gz nextcloud-server-01cecc9522c673fe87a5f561172166c4ed2f2a87.zip |
initialize $result
Diffstat (limited to 'lib')
-rw-r--r-- | lib/cache/apc.php | 2 |
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; } |