mirror of
https://github.com/radareorg/radare2.git
synced 2025-02-04 04:28:20 +00:00
* r_asm
- Fix x86.olly plugin
This commit is contained in:
parent
d48e80fac9
commit
e0635a8beb
@ -288,8 +288,8 @@ static void Scanasm(int mode) {
|
||||
while (*asmcmd==' ' || *asmcmd=='\t') asmcmd++;
|
||||
return; };
|
||||
|
||||
// XXX YES: we force radix=10 by default
|
||||
if (base==0) { //*asmcmd=='.') { // Force decimal number
|
||||
// XXX We must force base 10 by default
|
||||
if (*asmcmd=='.') { // Force decimal number
|
||||
if (base==16 || maxdigit>9) {
|
||||
asmerror="Not a decimal number"; scan=SCAN_ERR; return; };
|
||||
asmcmd++;
|
||||
|
@ -113,7 +113,7 @@ enum {
|
||||
R_ANAL_RET_END = -4
|
||||
};
|
||||
|
||||
typedef RAnal {
|
||||
typedef struct r_anal_t {
|
||||
int bits;
|
||||
int big_endian;
|
||||
void *user;
|
||||
|
Loading…
x
Reference in New Issue
Block a user