mirror of
https://github.com/radareorg/radare2.git
synced 2025-01-25 07:15:19 +00:00
Fix warning introduced in last commit
This commit is contained in:
parent
0b141fa26f
commit
213da629d4
@ -2682,7 +2682,7 @@ R_API int r_core_anal_search_xrefs(RCore *core, ut64 from, ut64 to, int rad) {
|
||||
while (at < to && !r_cons_is_breaked ()) {
|
||||
int i, ret;
|
||||
ret = r_io_read_at (core->io, at, buf, core->blocksize);
|
||||
if (ret != core->blocksize && at + ret-OPSZ < to || !ret) {
|
||||
if ((ret != core->blocksize && at + ret-OPSZ < to) || !ret) {
|
||||
break;
|
||||
}
|
||||
i = 0;
|
||||
|
Loading…
x
Reference in New Issue
Block a user