file.c: fix Fix Branch condition evaluates to a garbage value found by Clang Analyzer

Change-Id: Ib7c9e114973f78775cf17889b6aeab217cb6d0ef
Reviewed-on: https://code.wireshark.org/review/9101
Reviewed-by: Anders Broman <a.broman58@gmail.com>
This commit is contained in:
Alexis La Goutte 2015-06-24 22:36:53 +02:00 committed by Anders Broman
parent 89cc85b5ef
commit f75e52ba71
1 changed files with 1 additions and 1 deletions

2
file.c
View File

@ -1246,7 +1246,7 @@ cf_merge_files(char **out_filenamep, int in_file_count,
gboolean got_read_error = FALSE, got_write_error = FALSE;
gint64 data_offset;
progdlg_t *progbar = NULL;
gboolean stop_flag;
gboolean stop_flag = FALSE;
gint64 f_len, file_pos;
float progbar_val;
GTimeVal start_time;