Skip to content

Commit

Permalink
Fix Hashlist import for case sensitivity for v3.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
tedsmith committed Sep 21, 2018
1 parent a0c710f commit cdd888f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions uKnownHashLists.pas
Expand Up @@ -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
Expand Down

0 comments on commit cdd888f

Please sign in to comment.