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

github.com/nextcloud/documentserver_community.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/Document/ConverterBinary.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Document/ConverterBinary.php b/lib/Document/ConverterBinary.php
index 9da33b6..98bf763 100644
--- a/lib/Document/ConverterBinary.php
+++ b/lib/Document/ConverterBinary.php
@@ -50,9 +50,9 @@ class ConverterBinary {
}
$process = proc_open($cmd, $descriptorSpec, $pipes, self::BINARY_DIRECTORY, []);
- fclose($pipes[0]);
- $output = stream_get_contents($pipes[1]);
- $error = stream_get_contents($pipes[2]);
+ @fclose($pipes[0]);
+ $output = @stream_get_contents($pipes[1]);
+ $error = @stream_get_contents($pipes[2]);
$status = proc_close($process);