mirror of
https://github.com/moparisthebest/Simba
synced 2024-11-25 02:32:19 -05:00
Fix for deadlock. (Perhaps a FPC issue?)
This commit is contained in:
parent
28b12851e0
commit
0ab37b325d
@ -84,7 +84,8 @@ end;
|
|||||||
procedure TFunctionListFrame.FillThreadTerminate(Sender: TObject);
|
procedure TFunctionListFrame.FillThreadTerminate(Sender: TObject);
|
||||||
begin
|
begin
|
||||||
FillThread.Analyzer.Free;
|
FillThread.Analyzer.Free;
|
||||||
FreeAndNil(FillThread);
|
{ Don't free the thread when it is already stopped... This causes deadlocks? }
|
||||||
|
//FreeAndNil(FillThread);
|
||||||
ScriptNode.Expand(true);
|
ScriptNode.Expand(true);
|
||||||
FunctionList.EndUpdate;
|
FunctionList.EndUpdate;
|
||||||
if Filtering then
|
if Filtering then
|
||||||
|
Loading…
Reference in New Issue
Block a user