From 1708bae984c42fce21af22bc6737b64d3551ab91 Mon Sep 17 00:00:00 2001 From: Matt Brown Date: Tue, 17 Nov 2020 17:59:05 -0500 Subject: [PATCH] Taint analysis should always run fully --- src/psalm.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/psalm.php b/src/psalm.php index 8f05ea537..ecc66ac9b 100644 --- a/src/psalm.php +++ b/src/psalm.php @@ -659,6 +659,7 @@ if ($config->run_taint_analysis || (isset($options['track-tainted-input']) || isset($options['security-analysis']) || isset($options['taint-analysis'])) ) { + $is_diff = false; $project_analyzer->trackTaintedInputs(); }