From cdd888f2259df68db06094c1de65a8ce975ebc9d Mon Sep 17 00:00:00 2001 From: Ted Smith Date: Fri, 21 Sep 2018 23:19:18 +0100 Subject: [PATCH] Fix Hashlist import for case sensitivity for v3.0.3 --- uKnownHashLists.pas | 1 + 1 file changed, 1 insertion(+) diff --git a/uKnownHashLists.pas b/uKnownHashLists.pas index 632e00e..ba8b63b 100644 --- a/uKnownHashLists.pas +++ b/uKnownHashLists.pas @@ -68,6 +68,7 @@ procedure ImportHashList(Filename : string); while not EOF(InFile) do begin readln(InFile, SourceData); + SourceData := Uppercase(SourceData); inc(LineCounter, 1); // Add the hash value if not already in the list if HL1.FindIndexOf(SourceData) < 0 then