We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56bfe4a commit 8edc750Copy full SHA for 8edc750
x64_dbg_gui/Project/Src/Gui/CPUInfoBox.cpp
@@ -1,4 +1,5 @@
1
#include "CPUInfoBox.h"
2
+#include "Configuration.h"
3
#include "Bridge.h"
4
5
CPUInfoBox::CPUInfoBox(StdTable* parent) : StdTable(parent)
@@ -82,7 +83,7 @@ QString CPUInfoBox::getSymbolicName(int_t addr)
82
83
}
84
return finalText;
85
-#include "Configuration.h"
86
+
87
void CPUInfoBox::disasmSelectionChanged(int_t parVA)
88
{
89
curAddr = parVA;
@@ -91,8 +92,10 @@ void CPUInfoBox::disasmSelectionChanged(int_t parVA)
91
92
clear();
93
94
DISASM_INSTR instr;
95
+ memset(&instr, 0, sizeof(instr));
96
DbgDisasmAt(parVA, &instr);
97
BASIC_INSTRUCTION_INFO basicinfo;
98
+ memset(&basicinfo, 0, sizeof(basicinfo));
99
DbgDisasmFastAt(parVA, &basicinfo);
100
101
int start = 0;
0 commit comments