Kill a shadowed declaration of a local variable.

The variable tmp was already defined in the frame.
Redefining it makes some code linters grumpy.

Signed-off-by: Tyler J. Stachecki <tstache1@binghamton.edu>
test2
Tyler J. Stachecki 9 years ago committed by Nguyen Anh Quynh
parent 7fc95e82bb
commit d07a21b255
  1. 2
      cs.c

@ -681,7 +681,7 @@ size_t cs_disasm(csh ud, const uint8_t *buffer, size_t size, uint64_t offset, si
total = NULL;
} else if (f != cache_size) {
// total did not fully use the last cache, so downsize it
void *tmp = cs_mem_realloc(total, total_size - (cache_size - f) * sizeof(*insn_cache));
tmp = cs_mem_realloc(total, total_size - (cache_size - f) * sizeof(*insn_cache));
if (tmp == NULL) { // insufficient memory
// free all detail pointers
if (handle->detail) {

Loading…
Cancel
Save