Reducing disk I/O operations by reusing local var value
This commit is contained in:
parent
becfa86ac6
commit
df7e45a0d7
|
|
@ -90,7 +90,7 @@ bool cbDebugInit(int argc, char* argv[])
|
|||
arch = IsWow64() ? PeArch::Dotnet64 : PeArch::Dotnet86;
|
||||
|
||||
//do some basic checks
|
||||
switch(GetPeArch(arg1w.c_str()))
|
||||
switch(arch)
|
||||
{
|
||||
case PeArch::Invalid:
|
||||
dputs(QT_TRANSLATE_NOOP("DBG", "Invalid PE file!"));
|
||||
|
|
|
|||
Loading…
Reference in New Issue