Skip to content

Fix crash in FileAccess due to ownership of mJobHandler

The FileAccess class has unique ownership of it's mJobHandler member. Therefore it cannot just copy the pointer in the copy constructor because then two instances of FileAccess would own the same mJobHandler. Instead simply create a new mJobHandler if copying from a FileAccess with a mJobHandler.

Merge request reports