Merge branch 'develop' of github.com:zyantific/zyan-disassembler-engine into develop

This commit is contained in:
flobernd 2017-11-01 23:39:20 +01:00
commit 97a3425e31
1 changed files with 3 additions and 3 deletions

View File

@ -60,7 +60,7 @@ typedef struct ZydisDecoderContext_
*/ */
uint8_t lastSegmentPrefix; uint8_t lastSegmentPrefix;
/** /**
* @brief Contains the prefix that should be traited as the mandatory-prefix, if the current * @brief Contains the prefix that should be treated as the mandatory-prefix, if the current
* instruction needs one. * instruction needs one.
* *
* The last 0xF3/0xF2 prefix has precedence over previous ones and 0xF3/0xF2 in * The last 0xF3/0xF2 prefix has precedence over previous ones and 0xF3/0xF2 in
@ -4447,7 +4447,7 @@ ZydisStatus ZydisDecoderEnableMode(ZydisDecoder* decoder, ZydisDecoderMode mode,
ZydisStatus ZydisDecoderDecodeBuffer(const ZydisDecoder* decoder, const void* buffer, ZydisStatus ZydisDecoderDecodeBuffer(const ZydisDecoder* decoder, const void* buffer,
size_t bufferLen, uint64_t instructionPointer, ZydisDecodedInstruction* instruction) size_t bufferLen, uint64_t instructionPointer, ZydisDecodedInstruction* instruction)
{ {
if (!decoder) if (!decoder || !instruction)
{ {
return ZYDIS_STATUS_INVALID_PARAMETER; return ZYDIS_STATUS_INVALID_PARAMETER;
} }