mirror of
https://github.com/radareorg/radare2.git
synced 2025-02-05 04:56:10 +00:00
Change && for || and s/size/vsize in must_eob fcn_recurse
This commit is contained in:
parent
5a6f80d819
commit
6cb10fa635
@ -873,7 +873,7 @@ repeat:
|
||||
bool must_eob = anal->opt.eobjmp;
|
||||
if (!must_eob) {
|
||||
RIOSection *s = anal->iob.sect_vget (anal->iob.io, addr);
|
||||
must_eob = s? (op.jump < s->vaddr && op.jump > s->vaddr + s->size) : must_eob;
|
||||
must_eob = s? (op.jump < s->vaddr || op.jump > s->vaddr + s->vsize) : must_eob;
|
||||
}
|
||||
if (must_eob) {
|
||||
FITFCNSZ ();
|
||||
|
Loading…
x
Reference in New Issue
Block a user