diff options
Diffstat (limited to 'plugins/dalvik')
-rw-r--r-- | plugins/dalvik/operands/pool.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/plugins/dalvik/operands/pool.c b/plugins/dalvik/operands/pool.c index 821ca5b..1fd264b 100644 --- a/plugins/dalvik/operands/pool.c +++ b/plugins/dalvik/operands/pool.c @@ -396,18 +396,18 @@ static void g_dalvik_pool_operand_print(const GDalvikPoolOperand *operand, GBuff GArchOperand *g_dalvik_pool_operand_new(GDexFormat *format, DalvikPoolType type, const GBinContent *content, vmpa2t *pos, MemoryDataSize size, SourceEndian endian) { GDalvikPoolOperand *result; /* Structure à retourner */ - uint8_t index8; /* Indice sur 8 bits */ uint16_t index16; /* Indice sur 16 bits */ + uint32_t index32; /* Indice sur 32 bits */ bool test; /* Bilan de lecture */ switch (size) { - case MDS_8_BITS: - test = g_binary_content_read_u8(content, pos, &index8); - break; case MDS_16_BITS: test = g_binary_content_read_u16(content, pos, endian, &index16); break; + case MDS_32_BITS: + test = g_binary_content_read_u32(content, pos, endian, &index32); + break; default: test = false; break; @@ -422,7 +422,7 @@ GArchOperand *g_dalvik_pool_operand_new(GDexFormat *format, DalvikPoolType type, result->format = format; result->type = type; - result->index = (size == MDS_8_BITS ? index8 : index16); + result->index = (size == MDS_16_BITS ? index16 : index32); return G_ARCH_OPERAND(result); |