CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: 25205899

Search: Search took 0.12 seconds.

  1. Re: Boost invalid block while overloading global new/delete

    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...
  2. Re: Boost invalid block while overloading global new/delete

    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...
  3. Re: Boost invalid block while overloading global new/delete

    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...
  4. Boost invalid block while overloading global new/delete

    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++...
Results 1 to 4 of 4





Click Here to Expand Forum to Full Width

Featured