https://kotlinlang.org logo
b

Bailey Pollard

10/13/2021, 7:03 PM
Has anyone have experience with what causes a
SIGSEGV: Attempted to dereference garbage pointer 0xe480162a0.
? Total iOS noob here, but any suggestions could help
😶 1
m

Mejdi

10/13/2021, 9:39 PM
first this is rare as we now use Automatic Reference Counting on iOS. But this seems to be a case where we try to release an already released object from memory. One similar case is discussed here: https://kotlinlang.slack.com/archives/GQG00BACW/p1633427356063400 Checking the stack trace can help you to point what object could have caused it.
8 Views