Skip to content

Commit

Permalink
Bugfix. Random crash in LsColJob after recent changes.
Browse files Browse the repository at this point in the history
Signed-off-by: alex-z <[email protected]>
  • Loading branch information
allexzander authored and backportbot[bot] committed Jan 30, 2024
1 parent 297cd01 commit 6c55505
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/libsync/networkjobs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,8 @@ bool LsColJob::finished()

this->deleteLater();

return true;
// fix crash on random deletion mess in the parent class, we never discard this job but always delete it inside this method
return false;
}

/*********************************************************************************************/
Expand Down

0 comments on commit 6c55505

Please sign in to comment.