mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-02 02:06:46 +00:00
Avoid assertion in esil traces, speedup some paths (#13300)
This commit is contained in:
parent
c22f707f0b
commit
6ee5f04694
@ -91,6 +91,10 @@ static int trace_hook_mem_write(RAnalEsil *esil, ut64 addr, const ut8 *buf, int
|
||||
|
||||
R_API void r_anal_esil_trace (RAnalEsil *esil, RAnalOp *op) {
|
||||
const char *expr = r_strbuf_get (&op->esil);
|
||||
if (R_STR_ISEMPTY (expr)) {
|
||||
// do nothing
|
||||
return;
|
||||
}
|
||||
int esil_verbose = esil->verbose;
|
||||
if (ocbs_set) {
|
||||
eprintf ("cannot call recursively\n");
|
||||
|
Loading…
Reference in New Issue
Block a user