I also have another problem, sometimes my program crashes due to an Access Violation in MSVCRT.DLL, someone could help me to find out why ?
I also have another problem, sometimes my program crashes due to an Access Violation in MSVCRT.DLL, someone could help me to find out why ?
Originally Posted by yellowmat
One possible cause of this error is that the application has written past the block of memory that is owned by a particular object. The small-block heapmemory manager that ships with the Visual C++ 6.0 run-time libraries incorporates heap control structures within the small-block heap. Overwriting the memory block changes small-block heap pointer addresses, effecting a bad pointer and possibly a fault in Msvcrt.dll when the pointer is referenced.
MAke sure that the memory allocated is greater than the size of the object...
Last edited by Kapil; 30th March 2006 at 10:30.
Bookmarks