mirror of
https://github.com/doublecmd/doublecmd.git
synced 2026-06-21 09:58:13 +00:00
FIX: Use case insensitive search
This commit is contained in:
parent
29440a2db0
commit
705aa37bb1
1 changed files with 1 additions and 1 deletions
|
|
@ -53,7 +53,7 @@ begin
|
|||
|
||||
while (PByte(pImpDesc) < pEnd) and (pImpDesc^.FirstThunk <> 0) do
|
||||
begin
|
||||
if StrComp(@pModule[pImpDesc^.Name], pLibName) = 0 then
|
||||
if StrIComp(@pModule[pImpDesc^.Name], pLibName) = 0 then
|
||||
begin
|
||||
Result := @pModule[pImpDesc^.FirstThunk];
|
||||
Exit;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue