diff options
author | Thomas White <taw@physics.org> | 2021-07-21 11:51:56 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2021-07-21 15:34:31 +0200 |
commit | 6d94d4115c254d344bbb927596a7141ef39fd298 (patch) | |
tree | 652d07c4d6a9521c9359aa13bbda27309f53e6f8 /src/gui_index.c | |
parent | 50cf52b0bc0baa683b9508568131a3f6281bf4ff (diff) |
Add missing cleanup on error paths
Diffstat (limited to 'src/gui_index.c')
-rw-r--r-- | src/gui_index.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/gui_index.c b/src/gui_index.c index 55a758f0..a9037003 100644 --- a/src/gui_index.c +++ b/src/gui_index.c @@ -830,7 +830,10 @@ static char **indexamajig_command_line(const char *geom_filename, if ( args == NULL ) return NULL; indexamajig_path = get_crystfel_exe("indexamajig"); - if ( indexamajig_path == NULL ) return NULL; + if ( indexamajig_path == NULL ) { + free(args); + return NULL; + } /* The basics */ add_arg(args, n_args++, indexamajig_path); |