From d25ca1976be643ad123514e4b32f74c0814b2d40 Mon Sep 17 00:00:00 2001 From: Lukas Reschke <lukas@statuscode.ch> Date: Sat, 21 Nov 2020 01:11:37 +0000 Subject: [PATCH] Mark getAppPath as specialized taint Should remove some false positives. https://psalm.dev/docs/security_analysis/avoiding_false_positives/ Signed-off-by: Lukas Reschke <lukas@statuscode.ch> --- lib/private/legacy/OC_App.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/private/legacy/OC_App.php b/lib/private/legacy/OC_App.php index f7fdda66482..99d93b569ba 100644 --- a/lib/private/legacy/OC_App.php +++ b/lib/private/legacy/OC_App.php @@ -517,6 +517,8 @@ class OC_App { * Get the directory for the given app. * If the app is defined in multiple directories, the first one is taken. (false if not found) * + * @psalm-taint-specialize + * * @param string $appId * @return string|false * @deprecated 11.0.0 use \OC::$server->getAppManager()->getAppPath() -- GitLab