What does this error mean? malloc: *** error for object 0x103f000: pointer freed

What does it mean? Getting this in the console when using my application in debug mode:

malloc: * error for object 0x103f000: no pointer was freed * set breakpoint in malloc_error_break for debugging

Does this mean that I am releasing something?

+4
source share
1 answer

Take a look at this and.

It looks like you can dereference something zero or something like that. I suggest you post your code here to get more useful answers. I am not very familiar with the iPhone API, so this may not be very useful ...

+4
source

Source: https://habr.com/ru/post/1303731/


All Articles