X-Git-Url: https://git.lttng.org/?p=lttngtop.git;a=blobdiff_plain;f=src%2Fiostreamtop.c;fp=src%2Fiostreamtop.c;h=f3fef7b25ea97043dfc8f89949fb3bbf05556811;hp=f20fcecd81ec752a88b6ddf25559ab82d752aa81;hb=38be0c3fdc487f3cc2609266a33a39b96289faba;hpb=9f2856ad8e6efb7b5c1db062babb1276242dd444 diff --git a/src/iostreamtop.c b/src/iostreamtop.c index f20fcec..f3fef7b 100644 --- a/src/iostreamtop.c +++ b/src/iostreamtop.c @@ -48,7 +48,8 @@ void add_file(struct processtop *proc, struct files *file, int fd) if (tmp_file == NULL) g_ptr_array_index(proc->process_files_table, fd) = file; else { - if (strcmp(tmp_file->name, file->name) != 0) { + if (!tmp_file->name || + strcmp(tmp_file->name, file->name) != 0) { size = proc->process_files_table->len; g_ptr_array_set_size(proc->process_files_table, size+1); @@ -139,6 +140,10 @@ void close_file(struct processtop *proc, int fd) if (file != NULL) { file->flag = __NR_close; lttngtop.nbfiles--; + if (file->name) { + free(file->name); + file->name = NULL; + } } lttngtop.nbclosedfiles++; }