mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 04:22:20 +02:00
Fixed minidump
This commit is contained in:
parent
a32d18d962
commit
41185e871c
3 changed files with 7 additions and 6 deletions
|
@ -875,12 +875,12 @@ namespace IDE
|
||||||
public void DoOpenCrashDump()
|
public void DoOpenCrashDump()
|
||||||
{
|
{
|
||||||
#if !CLI
|
#if !CLI
|
||||||
/*if (mDeferredOpenFileName != null)
|
if (mDeferredOpenFileName != null)
|
||||||
{
|
{
|
||||||
|
OpenCrashDump(mDeferredOpenFileName);
|
||||||
DeleteAndNullify!(mDeferredOpenFileName);
|
DeleteAndNullify!(mDeferredOpenFileName);
|
||||||
return;
|
return;
|
||||||
}*/
|
}
|
||||||
|
|
||||||
var fileDialog = scope OpenFileDialog();
|
var fileDialog = scope OpenFileDialog();
|
||||||
fileDialog.Title = "Open Crash Dump";
|
fileDialog.Title = "Open Crash Dump";
|
||||||
|
|
|
@ -6328,9 +6328,9 @@ String COFF::GetOldSourceCommand(const StringImpl& path)
|
||||||
if (!matches)
|
if (!matches)
|
||||||
break;
|
break;
|
||||||
|
|
||||||
String& target = defs["SRCSRVTRG"];
|
String target = defs["SRCSRVTRG"];
|
||||||
String& cmd = defs["SRCSRVCMD"];
|
String cmd = defs["SRCSRVCMD"];
|
||||||
String& env = defs["SRCSRVENV"];
|
String env = defs["SRCSRVENV"];
|
||||||
|
|
||||||
_Expand(target);
|
_Expand(target);
|
||||||
_Expand(cmd);
|
_Expand(cmd);
|
||||||
|
|
|
@ -1417,6 +1417,7 @@ bool WinDebugger::DoUpdate()
|
||||||
Array<DbgPendingDebugInfoLoad> pendingList;
|
Array<DbgPendingDebugInfoLoad> pendingList;
|
||||||
for (auto kv : mPendingDebugInfoLoad)
|
for (auto kv : mPendingDebugInfoLoad)
|
||||||
pendingList.Add(kv.mValue);
|
pendingList.Add(kv.mValue);
|
||||||
|
mPendingDebugInfoLoad.Clear();
|
||||||
|
|
||||||
for (auto& entry : pendingList)
|
for (auto& entry : pendingList)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue