From 65fce09af4f15d76f7840db14aaf4cf676420664 Mon Sep 17 00:00:00 2001 From: namazso Date: Sun, 16 Jul 2023 13:06:15 +0200 Subject: [PATCH] Recognize arbitrary long hashes (fixes #179) --- OpenHashTab/utl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenHashTab/utl.cpp b/OpenHashTab/utl.cpp index 5d4ec4fc..df1d2bf3 100644 --- a/OpenHashTab/utl.cpp +++ b/OpenHashTab/utl.cpp @@ -89,7 +89,7 @@ static NTSTATUS load_string( } std::vector utl::FindHashInString(std::wstring_view wv) { - static auto regex = ctre::search; + static auto regex = ctre::search; if (auto whole = regex(wv); whole) return HashStringToBytes(std::wstring_view{std::wstring(whole)});