increase size of @op_str to 160 to contain long operand string of some Neon Arm instructions

This commit is contained in:
Nguyen Anh Quynh 2014-01-15 17:51:08 +08:00
parent 57c50d4845
commit 0636f68331
2 changed files with 2 additions and 2 deletions

View File

@ -108,7 +108,7 @@ typedef struct cs_insn_flat {
// Ascii text of instruction operands
// This information is available even when CS_OPT_DETAIL = CS_OPT_OFF
char op_str[136];
char op_str[160];
// NOTE: All information below is not available when CS_OPT_DETAIL = CS_OPT_OFF

View File

@ -134,7 +134,7 @@ typedef struct cs_insn {
// Ascii text of instruction operands
// This information is available even when CS_OPT_DETAIL = CS_OPT_OFF
char op_str[136];
char op_str[160];
// Pointer to cs_detail.
// NOTE: detail pointer is only valid (not NULL) when CS_OP_DETAIL = CS_OPT_ON