mirror of
https://github.com/radareorg/radare2.git
synced 2024-11-30 16:40:57 +00:00
Fix memleak
This commit is contained in:
parent
1ef940c92d
commit
870bb924da
@ -1112,8 +1112,9 @@ int main(int argc, char **argv, char **envp) {
|
||||
char *s = r_core_cmd_str (&r, "ieq");
|
||||
if (s && *s) {
|
||||
int da = r_config_get_i (r.config, "file.analyze");
|
||||
if (da > do_analysis)
|
||||
if (da > do_analysis) {
|
||||
do_analysis = da;
|
||||
}
|
||||
}
|
||||
free (s);
|
||||
}
|
||||
|
@ -755,6 +755,7 @@ static void ds_build_op_str(RDisasmState *ds) {
|
||||
free (ds->opstr);
|
||||
ds->opstr = strdup (ds->str);
|
||||
} else {
|
||||
free (ds->opstr);
|
||||
ds->opstr = strdup (asm_str? asm_str: "");
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user