How do i fix a user breakpoint?
-
Now my app is just flooding with user breakpoints everywhere. I've checked if i'm freeing some memory that's already freed but no. And most of the time the user breakpoint comes when i'm in an API function so i can't debug inside the function. Thanks
-
Now my app is just flooding with user breakpoints everywhere. I've checked if i'm freeing some memory that's already freed but no. And most of the time the user breakpoint comes when i'm in an API function so i can't debug inside the function. Thanks
You are observing a symptom of some other problem. Probably you are passing bad data into an API function. Work your way back up the call stack 'till it's in your own code, and check for things like de-allocated memory being used, or bogus pointers. Shog9 ------ If you really what to get shitfacde tell a crowded bar that is is yourt borthday and hife your wallet. you ka will many more friends.
- David Wulff, Brithday selebrations, 9/19/02
-
Now my app is just flooding with user breakpoints everywhere. I've checked if i'm freeing some memory that's already freed but no. And most of the time the user breakpoint comes when i'm in an API function so i can't debug inside the function. Thanks
if you allocate memory, then write something to it plus 1 byte or more. You could have a "user breakpoint" when you'll free the memory block.