In certain locations in my application, if I place a breakpoint and go to that location the code window jumps me to _string.h (which is locked) to this function.
static __inline void *
__inline_memcpy_chk (void *__dest, const void *__src, size_t __len)
When I hit Step I am stuck, and all I see is _string.h. My code still executes and I see my NSLog().
A quick fix is to run in release mode, but in my project I have special code that happens in release. So this isn't really an option.
Does anyone know what is going on?
Thanks.