diff options
author | Lionel Landwerlin <[email protected]> | 2019-04-27 09:36:23 +0800 |
---|---|---|
committer | Lionel Landwerlin <[email protected]> | 2019-06-12 09:49:55 +0300 |
commit | f80679c8e8aa3f1ff17deef7163ad9429eb90f44 (patch) | |
tree | 24753e7506d40197c680af14028769d34d8a96d3 | |
parent | 48d7e7a9b85d1391aaf2a605319b23e6e13fa096 (diff) |
intel/dump: fix segfault when the app hasn't accessed the device
Signed-off-by: Lionel Landwerlin <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
-rw-r--r-- | src/intel/tools/intel_dump_gpu.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/intel/tools/intel_dump_gpu.c b/src/intel/tools/intel_dump_gpu.c index d378375951e..09b8db39aa2 100644 --- a/src/intel/tools/intel_dump_gpu.c +++ b/src/intel/tools/intel_dump_gpu.c @@ -567,7 +567,9 @@ ioctl_init_helper(int fd, unsigned long request, ...) static void __attribute__ ((destructor)) fini(void) { - free(output_filename); - aub_file_finish(&aub_file); - free(bos); + if (devinfo.gen != 0) { + free(output_filename); + aub_file_finish(&aub_file); + free(bos); + } } |