Was there a change to way memory leaks are found? ...
# kotlin-native
d
Was there a change to way memory leaks are found? After upgrading to
1.3.11
, I now occasionally get this message at the end of my program "C\BuildAgent\work\4d622a065c544371\runtime\src\main\cpp\Memory.cpp1150: runtime assert: Memory leaks found"
o
There was no changes in this area in 1.3.11. What you could do to hide memory leaks is to call
platform.posix.exit
before runtime deinit, But generally it would be better to figure out the reason of this memory leak. Usually it could come from manual memory management around stable pointers.