|
@@ -1629,6 +1629,7 @@ static int symbol__disassemble(struct symbol *sym, struct annotate_args *args)
|
|
|
char symfs_filename[PATH_MAX];
|
|
|
struct kcore_extract kce;
|
|
|
bool delete_extract = false;
|
|
|
+ bool decomp = false;
|
|
|
int stdout_fd[2];
|
|
|
int lineno = 0;
|
|
|
int nline;
|
|
@@ -1662,6 +1663,7 @@ static int symbol__disassemble(struct symbol *sym, struct annotate_args *args)
|
|
|
tmp, sizeof(tmp)) < 0)
|
|
|
goto out;
|
|
|
|
|
|
+ decomp = true;
|
|
|
strcpy(symfs_filename, tmp);
|
|
|
}
|
|
|
|
|
@@ -1748,7 +1750,7 @@ out_free_command:
|
|
|
out_remove_tmp:
|
|
|
close(stdout_fd[0]);
|
|
|
|
|
|
- if (dso__needs_decompress(dso))
|
|
|
+ if (decomp)
|
|
|
unlink(symfs_filename);
|
|
|
|
|
|
if (delete_extract)
|