mirror of
https://github.com/capstone-engine/capstone.git
synced 2024-11-27 15:30:33 +00:00
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:
parent
7fc95e82bb
commit
d07a21b255
2
cs.c
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…
Reference in New Issue
Block a user