Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/private/Files/Stream/SeekableHttpStream.php16
1 files changed, 13 insertions, 3 deletions
diff --git a/lib/private/Files/Stream/SeekableHttpStream.php b/lib/private/Files/Stream/SeekableHttpStream.php
index fdcd9ea8cfb..113ba19a17a 100644
--- a/lib/private/Files/Stream/SeekableHttpStream.php
+++ b/lib/private/Files/Stream/SeekableHttpStream.php
@@ -149,15 +149,25 @@ class SeekableHttpStream implements File {
}
public function stream_stat() {
- return fstat($this->current);
+ if (is_resource($this->current)) {
+ return fstat($this->current);
+ } else {
+ return false;
+ }
}
public function stream_eof() {
- return feof($this->current);
+ if (is_resource($this->current)) {
+ return feof($this->current);
+ } else {
+ return true;
+ }
}
public function stream_close() {
- fclose($this->current);
+ if (is_resource($this->current)) {
+ fclose($this->current);
+ }
}
public function stream_write($data) {