mirror of
https://github.com/radareorg/radare2.git
synced 2025-03-03 19:59:09 +00:00
Fix #8141 - Add missing afv-
This commit is contained in:
parent
56742aefd7
commit
1980db8424
@ -747,6 +747,16 @@ static int var_cmd(RCore *core, const char *str) {
|
||||
ostr = p = strdup (str);
|
||||
/* Variable access CFvs = set fun var */
|
||||
switch (str[0]) {
|
||||
case '-':
|
||||
// "afv"
|
||||
if (fcn) {
|
||||
r_core_cmdf (core, "afvs-%s", str + 1);
|
||||
r_core_cmdf (core, "afvb-%s", str + 1);
|
||||
r_core_cmdf (core, "afvr-%s", str + 1);
|
||||
return true;
|
||||
}
|
||||
eprintf ("Cannot find function\n");
|
||||
return false;
|
||||
case 'R': // "afvR"
|
||||
case 'W': // "afvW"
|
||||
case '*': // "afv*"
|
||||
|
Loading…
x
Reference in New Issue
Block a user