mirror of
https://github.com/radareorg/radare2.git
synced 2025-02-04 20:46:20 +00:00
Fix crash in 'C{fd..}.', reproducible with r2dec (#16823)
This commit is contained in:
parent
ae45c06ae3
commit
ecb3fc4b13
@ -694,6 +694,9 @@ static int cmd_meta_others(RCore *core, const char *input) {
|
||||
}
|
||||
ut64 size;
|
||||
RAnalMetaItem *mi = r_meta_get_at (core->anal, addr, type, &size);
|
||||
if (!mi) {
|
||||
break;
|
||||
}
|
||||
if (type == 's') {
|
||||
char *esc_str;
|
||||
bool esc_bslash = core->print->esc_bslash;
|
||||
|
@ -1,3 +1,11 @@
|
||||
NAME=Cf. crash
|
||||
FILE=-
|
||||
CMDS=<<EOF
|
||||
Cf.
|
||||
EOF
|
||||
EXPECT=<<EOF
|
||||
EOF
|
||||
RUN
|
||||
|
||||
NAME=vars commenting
|
||||
FILE=malloc://1024
|
||||
|
Loading…
x
Reference in New Issue
Block a user