Delphi_MemoryModule icon indicating copy to clipboard operation
Delphi_MemoryModule copied to clipboard

Access violation inside BuildImportTable procedure

Open hafedh-trimeche opened this issue 8 years ago • 1 comments

Delphi 10.1 berlin Calling raised exception at GetProcAddress_Internal(handle, PAnsiChar(IMAGE_ORDINAL(thunkRef^))) instruction while thunkRef^ <> 0 do begin if IMAGE_SNAP_BY_ORDINAL(thunkRef^) then funcRef^ := GetProcAddress_Internal(handle, PAnsiChar(IMAGE_ORDINAL(thunkRef^))) else begin thunkData := PIMAGE_IMPORT_BY_NAME(PByte(codebase) + thunkRef^); funcRef^ := GetProcAddress_Internal(handle, PAnsiChar(@(thunkData.Name))); end; if funcRef^ = nil then begin Result := False; Break; end; Inc(funcRef); Inc(thunkRef); end; // while

hafedh-trimeche avatar Mar 23 '17 10:03 hafedh-trimeche

Hi! Could you please try with version from dev branch?

Fr0sT-Brutal avatar Nov 29 '18 14:11 Fr0sT-Brutal