Minor code optimizations

This commit is contained in:
flobernd 2018-03-13 00:23:24 +01:00
parent 4bea392853
commit 16e6d0f02b
No known key found for this signature in database
GPG Key ID: 9C3AE0ED4A969F10
1 changed files with 2 additions and 2 deletions

View File

@ -614,7 +614,7 @@ int main(int argc, char** argv)
fprintf(stderr, "Maximum number of %d bytes exceeded", ZYDIS_MAX_INSTRUCTION_LENGTH); fprintf(stderr, "Maximum number of %d bytes exceeded", ZYDIS_MAX_INSTRUCTION_LENGTH);
return ZYDIS_STATUS_INVALID_PARAMETER; return ZYDIS_STATUS_INVALID_PARAMETER;
} }
size_t len = strlen(argv[i + 2]); const size_t len = strlen(argv[i + 2]);
if (len % 2) if (len % 2)
{ {
fputs("Even number of hex nibbles expected", stderr); fputs("Even number of hex nibbles expected", stderr);
@ -634,7 +634,7 @@ int main(int argc, char** argv)
} }
ZydisDecodedInstruction instruction; ZydisDecodedInstruction instruction;
ZydisStatus status = ZydisDecoderDecodeBuffer(&decoder, &data, length, 0, &instruction); const ZydisStatus status = ZydisDecoderDecodeBuffer(&decoder, &data, length, 0, &instruction);
if (!ZYDIS_SUCCESS(status)) if (!ZYDIS_SUCCESS(status))
{ {
if (status >= ZYDIS_STATUS_USER) if (status >= ZYDIS_STATUS_USER)