mirror of
https://github.com/JohnEstropia/CoreStore.git
synced 2026-01-11 20:00:30 +01:00
Crash in DataStack.swift deinit for background task #406
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @jimbengtsson92 on GitHub (Apr 14, 2023).
I have received a crash in crashlytics which comes from the deinit in DataStack.swift for a background task.
Stack trace:
@JohnEstropia commented on GitHub (Apr 14, 2023):
KERN_INVALID_ADDRESS just means you have a dangling pointer. You'd need to look for those leaks in your app
@jimbengtsson92 commented on GitHub (Apr 17, 2023):
@JohnEstropia Ok thanks for the feedback.