mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-17 10:49:09 +02:00
Fixed checking CurrentDebuggerPropertiesConfig for nil.
Related to 4f145f9709
This commit is contained in:
parent
c28cc988ec
commit
9d94d1fa28
@ -796,7 +796,7 @@ begin
|
|||||||
s:=MakeExeComboBox.Text;
|
s:=MakeExeComboBox.Text;
|
||||||
if s<>'' then
|
if s<>'' then
|
||||||
EnvironmentOptions.MakeFilename:=s;
|
EnvironmentOptions.MakeFilename:=s;
|
||||||
if not (FSkipDebugger and (EnvironmentOptions.CurrentDebuggerPropertiesConfig <> nil))
|
if not FSkipDebugger and (EnvironmentOptions.CurrentDebuggerPropertiesConfig <> nil)
|
||||||
then begin
|
then begin
|
||||||
s:=DebuggerComboBox.Text;
|
s:=DebuggerComboBox.Text;
|
||||||
if s<>'' then begin
|
if s<>'' then begin
|
||||||
|
Loading…
Reference in New Issue
Block a user