1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-09 20:12:21 +02:00

Fixed minidump

This commit is contained in:
Brian Fiete 2019-09-20 10:40:09 -07:00
parent a32d18d962
commit 41185e871c
3 changed files with 7 additions and 6 deletions

View file

@ -875,12 +875,12 @@ namespace IDE
public void DoOpenCrashDump()
{
#if !CLI
/*if (mDeferredOpenFileName != null)
if (mDeferredOpenFileName != null)
{
OpenCrashDump(mDeferredOpenFileName);
DeleteAndNullify!(mDeferredOpenFileName);
return;
}*/
}
var fileDialog = scope OpenFileDialog();
fileDialog.Title = "Open Crash Dump";

View file

@ -6328,9 +6328,9 @@ String COFF::GetOldSourceCommand(const StringImpl& path)
if (!matches)
break;
String& target = defs["SRCSRVTRG"];
String& cmd = defs["SRCSRVCMD"];
String& env = defs["SRCSRVENV"];
String target = defs["SRCSRVTRG"];
String cmd = defs["SRCSRVCMD"];
String env = defs["SRCSRVENV"];
_Expand(target);
_Expand(cmd);

View file

@ -1417,6 +1417,7 @@ bool WinDebugger::DoUpdate()
Array<DbgPendingDebugInfoLoad> pendingList;
for (auto kv : mPendingDebugInfoLoad)
pendingList.Add(kv.mValue);
mPendingDebugInfoLoad.Clear();
for (auto& entry : pendingList)
{