fix(userspace/engine): make sure that m_uses_paths is always false by default

Signed-off-by: Lorenzo Fontana <lo@linux.com>
This commit is contained in:
Lorenzo Fontana
2020-02-06 14:25:03 +01:00
committed by poiana
parent 240f7e2057
commit 5b9001d1d5

View File

@@ -282,7 +282,8 @@ private:
// If true, this filtercheck works on paths, which enables // If true, this filtercheck works on paths, which enables
// some extra bookkeeping to allow for path prefix searches. // some extra bookkeeping to allow for path prefix searches.
bool m_uses_paths; bool m_uses_paths = false;
path_prefix_search m_prefix_search; path_prefix_search m_prefix_search;
}; };