HEAP CORRUPTION DETECTED error
Posted by Go crazy for anything that will make you smile.
출처 : http://javawork.egloos.com/2244196 보통 아래와 같은 코드에서 HEAP CORRUPTION DETECTED 에러가 납니다. struct TestStruct { int serial; short level; double postion; }; typedef std::vector TestVector; TestVector test_vec; TestStruct tt; test_vec.push_back(tt); memset(&test_vec[0], 0, sizeof(TestVector)); 자기가 소유하지 않은 메모리, 즉 배열의 경계를 넘어서 초기화한다거나 하면 나중에 해당 객체가 해제될때 이 에러가 발생하는데, 최근에 특이한 환경에서 이 에러를 경험했습니다. TestClass*..