diff options
author | Josh Richards <josh.t.richards@gmail.com> | 2023-06-03 08:57:38 -0400 |
---|---|---|
committer | Simon L <szaimen@e.mail.de> | 2023-06-24 15:37:06 +0200 |
commit | e7cbaf3ee323c9187356300012c8cfb3879b0349 (patch) | |
tree | 46422c9c829cb0ea5ed207e9b29587d278ace452 /apps/files_external | |
parent | 99cbf778f31a543889edcc709dbc9e8c9361e5f5 (diff) | |
download | nextcloud-server-e7cbaf3ee323c9187356300012c8cfb3879b0349.tar.gz nextcloud-server-e7cbaf3ee323c9187356300012c8cfb3879b0349.zip |
Clean-up some remaining readdir calls with undesirable false evaluation potential
Signed-off-by: Josh Richards <josh.t.richards@gmail.com>
Diffstat (limited to 'apps/files_external')
-rw-r--r-- | apps/files_external/lib/Lib/Storage/Swift.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files_external/lib/Lib/Storage/Swift.php b/apps/files_external/lib/Lib/Storage/Swift.php index 26e6c5315cb..aaa707b43e8 100644 --- a/apps/files_external/lib/Lib/Storage/Swift.php +++ b/apps/files_external/lib/Lib/Storage/Swift.php @@ -261,7 +261,7 @@ class Swift extends \OC\Files\Storage\Common { } $dh = $this->opendir($path); - while ($file = readdir($dh)) { + while (($file = readdir($dh)) !== false) { if (\OC\Files\Filesystem::isIgnoredDir($file)) { continue; } @@ -527,7 +527,7 @@ class Swift extends \OC\Files\Storage\Common { } $dh = $this->opendir($source); - while ($file = readdir($dh)) { + while (($file = readdir($dh)) !== false) { if (\OC\Files\Filesystem::isIgnoredDir($file)) { continue; } |