Skip to content

Commit

Permalink
Merge pull request #6396 from nextcloud/backport/6393/stable-3.12
Browse files Browse the repository at this point in the history
[stable-3.12] Bugfix. Random crash in LsColJob after recent changes.
  • Loading branch information
mgallien committed Jan 30, 2024
2 parents 4147cae + 71f4105 commit fbcbf7a
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 fbcbf7a

Please sign in to comment.