December 29th, 2010 11:49 PM
The assertion happens during the CRT teardown where all objects are deleted. In my case the assertion happens during the boost::runtime::cla::parser::~parser deletion which is probably part of the...
December 29th, 2010 10:57 PM
I'm using a debug boost over a debug EXE. Like I explained above, I overload new/delete globally and delegate the actual implementation into the other DLL's exported functions that do the malloc/free...
December 28th, 2010 09:14 PM
The memory is allocated and freed in the same Release DLL. The new/delete operators overloading is delegating the actual implementation into export functions within the DLL that internally call...
December 28th, 2010 01:32 AM
Hi,
I have a problem which appears to a be an invalid memory block that happens during a Boost call to Boost:runtime:cla::parser::~parser. When that global delete is called on that object, C++...