Skip to content

Commit

Permalink
Mantis #5740: Access violation at address 5800C1B6 in module 'JclBase…
Browse files Browse the repository at this point in the history
…Expert150.bpl'

There are no ProjectOptions if we have a Language Ressouce DLL project
  • Loading branch information
ahausladen committed Jan 2, 2024
1 parent d5e0545 commit 4b319dc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion jcl/experts/debug/converter/JclDebugIdeImpl.pas
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,8 @@ procedure TJclDebugExtension.AfterCompile(const Project: IOTAProject; Succeeded:
end;

begin
if JclDisablePostCompilationProcess or (Project = nil) then
// There are no ProjectOptions if we have a Language Ressouce DLL project (Mantis #5740)
if JclDisablePostCompilationProcess or (Project = nil) or (Project.ProjectOptions = nil) then
Exit;

OTAMessageServices := GetOTAMessageServices;
Expand Down

0 comments on commit 4b319dc

Please sign in to comment.