X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=blobdiff_plain;f=converter%2Fbabeltrace.c;fp=converter%2Fbabeltrace.c;h=043ac0d5bc90604482d511cac62b34403231f958;hp=ef783ed495a3f35295de62f6a0f71261ac216b98;hb=eaa80814dee7373f72a66107bcb406f998e37fc3;hpb=c78c9438e998dc9a271a46362ed88bb0399558ef diff --git a/converter/babeltrace.c b/converter/babeltrace.c index ef783ed4..043ac0d5 100644 --- a/converter/babeltrace.c +++ b/converter/babeltrace.c @@ -448,8 +448,17 @@ static int parse_options(int argc, char **argv) do { ipath = poptGetArg(pc); - if (ipath) - g_ptr_array_add(opt_input_paths, (gpointer) ipath); + if (ipath) { + gpointer ipath_copy = strdup(ipath); + + if (!ipath_copy) { + perror("Failed to copy input path"); + ret = -1; + goto end; + } + + g_ptr_array_add(opt_input_paths, ipath_copy); + } } while (ipath); if (opt_input_paths->len == 0) { ret = -EINVAL; @@ -726,6 +735,12 @@ void call_plugins_hooks(void) bt_ctf_metadata_hook(); } +static +void free_ptr_array_element(gpointer ptr, gpointer user_data __attribute__((unused))) +{ + free(ptr); +} + int main(int argc, char **argv) { int ret, partial_error = 0, open_success = 0; @@ -880,6 +895,7 @@ end: free(opt_output_path); free(opt_debug_info_dir); free(opt_debug_info_target_prefix); + g_ptr_array_foreach(opt_input_paths, free_ptr_array_element, NULL); g_ptr_array_free(opt_input_paths, TRUE); if (partial_error) exit(EXIT_FAILURE);