From 3226c7a7c30fc52f6237f9a8754667e44d8b179d Mon Sep 17 00:00:00 2001 From: Antonio SJ Musumeci Date: Mon, 9 Mar 2026 11:17:39 -0500 Subject: [PATCH] Fix eplus search bug Not that anyone would ever use this but it was noticed in a scan. --- src/policy_eplus.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/policy_eplus.cpp b/src/policy_eplus.cpp index 57060c74..5f57f351 100644 --- a/src/policy_eplus.cpp +++ b/src/policy_eplus.cpp @@ -126,7 +126,7 @@ _search(const Branches::Ptr &branches_, Branch *obranch; obranch = nullptr; - eplus = 0; + eplus = std::numeric_limits::max(); for(auto &branch : *branches_) { if(!fs::exists(branch.path,fusepath_))