mirror of
https://github.com/radareorg/radare2.git
synced 2025-02-08 23:07:17 +00:00
Fix bug #2558 and add more comments
This commit is contained in:
parent
0cc6f3a2c9
commit
9ae34bfceb
@ -1416,7 +1416,15 @@ static void get_nesttype_print_type(void *type, char **name)
|
||||
print_base_type(base_type, &tmp_name);
|
||||
} else {
|
||||
ti = &t->type_data;
|
||||
ti->get_print_type(ti, &tmp_name);
|
||||
if (ti->get_print_type != NULL) {
|
||||
ti->get_print_type(ti, &tmp_name);
|
||||
} else {
|
||||
// TODO: need to investigate why this branch can be...
|
||||
// this is possible because there is no support for
|
||||
// parsing METHODLIST...
|
||||
// need to investigate for this theme
|
||||
printf("warning: strange for nesttype\n");
|
||||
}
|
||||
}
|
||||
|
||||
name_len = strlen("nesttype ");
|
||||
|
Loading…
x
Reference in New Issue
Block a user