I have build a dynamic library in both debug and release mode. In the Source code of this libray relloc() function is used. I am linking this libray to my executable application. When i execute the application in debug mode, the application is crashing with the following message
"Unhandled exception at 0x7c90120e in MyApplication.exe: User breakpoint."
When I debug, the application is crashing as realloc() function call.
But when I run in release mode the application is working fine.
Can any body know the reason why the crash is occurring in debug mode and how to fix this problem??
Thank in advance.