Backport trunk r53890 #714bd8024f. Prevent freeze in converter.

git-svn-id: branches/fixes_1_6@53962 -
This commit is contained in:
juha 2017-01-17 11:59:42 +00:00
parent a51a45d3d2
commit 34ee510a75

View File

@ -971,7 +971,8 @@ end;
procedure TConvertSettingsForm.CancelButtonClick(Sender: TObject);
begin
if Assigned(fCacheUnitsThread) then begin
if Assigned(fCacheUnitsThread) and fThreadStarted then
begin
(fCacheUnitsThread as TCacheUnitsThread).Searcher.Stop;
fCacheUnitsThread.WaitFor;
end;