mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-08 03:28:20 +02:00
Added crash text to minidump
This commit is contained in:
parent
7bd29b5b69
commit
a7e9182d4b
3 changed files with 61 additions and 48 deletions
|
@ -222,6 +222,15 @@ MiniDumpDebugger::MiniDumpDebugger(DebugManager* debugManager, DbgMiniDump* mini
|
|||
{
|
||||
const char* report = &mMiniDump->GetStreamData<char>(section);
|
||||
}
|
||||
else if (section.mStreamType == 0x4b6b0002) // Stability report
|
||||
{
|
||||
const char* report = &mMiniDump->GetStreamData<char>(section);
|
||||
}
|
||||
else if (section.mStreamType == 0xBEEF00) // Error text
|
||||
{
|
||||
char* text = &mMiniDump->GetStreamData<char>(section);
|
||||
OutputMessage(String(text, section.mDataSize));
|
||||
}
|
||||
}
|
||||
|
||||
Run();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue