diff options
author | Josh Richards <josh.t.richards@gmail.com> | 2023-08-03 09:53:46 -0400 |
---|---|---|
committer | backportbot-nextcloud[bot] <backportbot-nextcloud[bot]@users.noreply.github.com> | 2023-08-05 10:34:11 +0000 |
commit | d6fe5acbecbafd9880e00afb4c80d0fd96e18793 (patch) | |
tree | 1cfee7402b5e3dbd02b0f876bd58f9ae305a49d2 /lib | |
parent | 2b4be90b3415baa1eddb6a5c67b6d0a74a940388 (diff) | |
download | nextcloud-server-d6fe5acbecbafd9880e00afb4c80d0fd96e18793.tar.gz nextcloud-server-d6fe5acbecbafd9880e00afb4c80d0fd96e18793.zip |
Catch more invalid cache source storage paths
OC\Files\Cache\Cache::get can return string|false|null, not just string|false.
- nextcloud/server#26270 added handling of false, but null is needed too.
- Well, or we change the default $resullt to false, but I'm not sure if that has other ramifications and the real need here is to simply catch situations where the cache source storage path is not valid for whatever reason
Related: nextcloud/server#19009
Signed-off-by: Josh Richards <josh.t.richards@gmail.com>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/Files/Cache/Cache.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Files/Cache/Cache.php b/lib/private/Files/Cache/Cache.php index 8fe413a0206..1d22a3835e9 100644 --- a/lib/private/Files/Cache/Cache.php +++ b/lib/private/Files/Cache/Cache.php @@ -681,7 +681,7 @@ class Cache implements ICache { $targetPath = $this->normalize($targetPath); $sourceData = $sourceCache->get($sourcePath); - if ($sourceData === false) { + if ($sourceData === false || $sourceData === null) { throw new \Exception('Invalid source storage path: ' . $sourcePath); } |