Skip to content

Commit

Permalink
try
Browse files Browse the repository at this point in the history
  • Loading branch information
radare committed Jul 3, 2024
1 parent 0c0dbac commit 1cefbc9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion libr/core/disasm.c
Original file line number Diff line number Diff line change
Expand Up @@ -5057,7 +5057,8 @@ static bool mymemwrite1(REsil *esil, ut64 addr, const ut8 *buf, int len) {
}

static bool mymemwrite0(REsil *esil, ut64 addr, const ut8 *buf, int len) {
return mymemwrite1 (esil, addr, buf, len);
(void)mymemwrite1 (esil, addr, buf, len);
return false;
}

static bool mymemwrite2(REsil *esil, ut64 addr, const ut8 *buf, int len) {
Expand Down

0 comments on commit 1cefbc9

Please sign in to comment.