|
Question : Assert error on strcore.cpp
|
|
When I was try connect with socket, Visual C++ SP6 giving assertion error. What is the solution?
Debug Assertion Failed! Program:D:.................\BULKMAIL.EXE File:strcore.cpp Line:154
Abort Retry Ignore
sometimes Line:53
|
|
Answer : Assert error on strcore.cpp
|
|
Is it possible that somewhere before place where you allocated memory for CString you have an object which memory was overwritten past allocated size and corrupted CString memory? In that case when Cstring is get destroyed or it value reassinged it crashes when attemps to release memory
Example char pTest0 = "AAAAAAAAAA"; char* pTest1 = new char[4]; CString* pTest2 = new CString() strcpy( pTest1, pTest0 ); delete pTest2;
|
|
|