]> source.dussan.org Git - nextcloud-server.git/commitdiff
fixed if fopen returns false typically on external storage
authorFlorin Peter <github@florin-peter.de>
Tue, 28 May 2013 18:50:14 +0000 (20:50 +0200)
committerFlorin Peter <github@florin-peter.de>
Tue, 28 May 2013 18:50:14 +0000 (20:50 +0200)
apps/files_encryption/lib/util.php

index 48485cf2e86eb24b783a669de229040a951fbbba..2452f4c6ae3ef5f902fd922bc32b85dc10abe372 100644 (file)
@@ -541,7 +541,7 @@ class Util {
                // we only need 24 byte from the last chunk
                $data = '';
                $handle = $this->view->fopen($path, 'r');
-               if (!fseek($handle, -24, SEEK_END)) {
+               if (is_resource($handle) && !fseek($handle, -24, SEEK_END)) {
                        $data = fgets($handle);
                }