mirror of
https://github.com/doublecmd/doublecmd.git
synced 2026-06-21 09:58:13 +00:00
FIX: Bug [0002291] DC crashes when adding file to queue for delete on SMB share
This commit is contained in:
parent
f451066f8a
commit
6db1f2790c
1 changed files with 2 additions and 1 deletions
|
|
@ -1191,7 +1191,8 @@ begin
|
|||
Node := tvOperations.Items.GetFirstNode;
|
||||
while Assigned(Node) do
|
||||
begin
|
||||
TViewBaseItem(Node.Data).UpdateView(tvOperations.Canvas);
|
||||
if Assigned(Node.Data) then
|
||||
TViewBaseItem(Node.Data).UpdateView(tvOperations.Canvas);
|
||||
Node := Node.GetNext;
|
||||
end;
|
||||
end;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue