Merge pull request #12 from gir489/master

Added failure scenario for AutoGenerate
This commit is contained in:
Aidan Khoury
2018-07-02 17:00:57 -03:00
committed by GitHub
2 changed files with 7 additions and 2 deletions

View File

@@ -20,6 +20,6 @@ Visual Studio will also expect the SDK to be located at %IDADIR%\idasdk. Make su
# Running the build
Because IDA no longer has a native 32-bit compiled version anymore, the Release/Debug is the build script for the 32-bit version of IDA and Release64/Debug64 is the build script for the 64-bit version.
Because IDA no longer has a native 32-bit compiled version anymore, the Release/Debug scenarios are the build scripts for the 32-bit version of IDA and Release64/Debug64 are the build scripts for the 64-bit version.
**Do not change the target platform from x64!**

View File

@@ -400,6 +400,11 @@ void GenerateSig( SigType eType )
}
}
}
else
{
msg("Failed to automatically generate signature at %X\n", dwAddress);
return;
}
qstring strSig = (*SigIterator).strSig, strTmp;
char szMask[MAXSTR];