input/binary: Code cleanup.
This cleans up a warning generated by clang's static analyzer.
This commit is contained in:
parent
6409821143
commit
577a9fe423
|
@ -97,7 +97,6 @@ static int process_buffer(struct sr_input *in)
|
|||
/* Cut off at multiple of unitsize. */
|
||||
chunk_size = in->buf->len / logic.unitsize * logic.unitsize;
|
||||
|
||||
chunk = 0;
|
||||
for (i = 0; i < chunk_size; i += chunk) {
|
||||
logic.data = in->buf->str + i;
|
||||
chunk = MIN(MAX_CHUNK_SIZE, chunk_size - i);
|
||||
|
|
Loading…
Reference in New Issue