Skip to content

Fix crash in DropJob

David Edmundson requested to merge work/crash_fix into master

QMimeData is owned by the backend and can be deleted during any event processing.

DropJob has a deferred start operation. One path in this is to call PasteJob with mimedata. It could be dangling by this point.

Pastejob follows a similar pattern in 1d668a9f internally but we also need to handle this usage before PasteJob.

BUG: 454747

Merge request reports