2025-07-21 18:50 CEST

View Revisions: Issue #4646

Summary 0004646: double free in rts/System/Platform/Linux/CrashHandler.cpp:737 (=crash handler crashes)
Revision 2015-01-10 17:10 by abma
Description code is:

ExtractSymbols(lines, stacktrace)
{
...
free(lines);
}



737: ExtractSymbols(lines, stacktrace)
739: free(lines);



sadly removing the double-free() makes the crashhandler not work anymore :-|


Stacktrace is always empty when removing it.
Revision 2015-01-10 17:08 by abma
Description code is:

ExtractSymbols(lines, stacktrace)
{
...
free(lines);
}



737: ExtractSymbols(lines, stacktrace)
739: free(lines);



sadly removing the double-free() makes the crashhandler not work for non-crashes :-|


Stacktrace is always empty when removing it.