mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-05 03:56:46 +00:00
Fix isqq #command
This commit is contained in:
parent
1fcd0b909e
commit
2cc9343d08
@ -541,6 +541,9 @@ static int cmd_info(void *data, const char *input) {
|
||||
if (input[1] == 'j' && input[2] == '.') {
|
||||
mode = R_MODE_JSON;
|
||||
RBININFO ("symbols", R_CORE_BIN_ACC_SYMBOLS, input + 2, (obj && obj->symbols)? r_list_length (obj->symbols): 0);
|
||||
} else if (input[1] == 'q' && input[2] == 'q') {
|
||||
mode = R_MODE_SIMPLEST;
|
||||
RBININFO ("symbols", R_CORE_BIN_ACC_SYMBOLS, input + 1, (obj && obj->symbols)? r_list_length (obj->symbols): 0);
|
||||
} else {
|
||||
RBININFO ("symbols", R_CORE_BIN_ACC_SYMBOLS, input + 1, (obj && obj->symbols)? r_list_length (obj->symbols): 0);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user