From 06b2ed26413bb381ea9bcff32196d5727e298954 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Tue, 22 Nov 2022 16:40:12 +0100 Subject: [PATCH] skip files that cant be opened for FixEncryptedVersion Signed-off-by: Robin Appelman --- apps/encryption/lib/Command/FixEncryptedVersion.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/apps/encryption/lib/Command/FixEncryptedVersion.php b/apps/encryption/lib/Command/FixEncryptedVersion.php index d4c5eddbfe5..ab9cc528c54 100644 --- a/apps/encryption/lib/Command/FixEncryptedVersion.php +++ b/apps/encryption/lib/Command/FixEncryptedVersion.php @@ -174,6 +174,11 @@ class FixEncryptedVersion extends Command { */ $handle = $this->view->fopen($path, 'rb'); + if ($handle === false) { + $output->writeln("Failed to open file: \"$path\" skipping"); + return true; + } + if (\fread($handle, 9001) !== false) { $fileInfo = $this->view->getFileInfo($path); if (!$fileInfo) { -- 2.39.5