mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-01 17:40:34 +00:00
Fix two minor warnings (#12296)
This commit is contained in:
parent
1c83de1e54
commit
c82049aaad
@ -949,7 +949,7 @@ static int opdec(RAsm *a, ut8 *data, const Opcode *op) {
|
||||
int reg = 0;
|
||||
int rm;
|
||||
bool use_sib = false;
|
||||
int sib;
|
||||
int sib = 0;
|
||||
//mod
|
||||
if (offset == 0) {
|
||||
mod = 0;
|
||||
|
@ -1004,7 +1004,7 @@ R_API int offset_history_down(RLine *line) {
|
||||
}
|
||||
|
||||
R_API void r_core_visual_offset(RCore *core) {
|
||||
ut64 addr, bsze, newaddr;
|
||||
ut64 addr, bsze, newaddr = 0LL;
|
||||
char buf[256];
|
||||
|
||||
backup_current_addr (core, &addr, &bsze, &newaddr);
|
||||
|
Loading…
Reference in New Issue
Block a user