While using the client on Linux I have encountered memory leak originating from
ExceptionHandler::ExceptionHandler:
if (!handler_stack_)
handler_stack_ = new std::vector<ExceptionHandler*>;
It seems that handler_stack_ is never deallocated, even after removal of last
handler.
In Windows implementation, however, I found that it is being deallocated
properly.
Shouldnt the behavior be the same in both cases ?
Original issue reported on code.google.com by albert.b...@sharkbits.com on 28 May 2014 at 2:15
Original issue reported on code.google.com by
albert.b...@sharkbits.com
on 28 May 2014 at 2:15