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>
This commit is contained in:
Tyler J. Stachecki 2015-10-23 20:59:20 -04:00
parent 88e8da65bd
commit 30d1167a93

2
cs.c
View File

@ -584,7 +584,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) {