aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2015-06-24 22:36:53 +0200
committerAnders Broman <a.broman58@gmail.com>2015-06-24 22:21:00 +0000
commitf75e52ba7104d56c16ecb7c903b53e71c20e27a8 (patch)
treee805952a2627f5a3451b6928d2827768d5fc6c55
parent89cc85b5efce579aeda3cfaeb0d74551b229acc4 (diff)
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>
-rw-r--r--file.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/file.c b/file.c
index 79a8e11455..4755394963 100644
--- a/file.c
+++ b/file.c
@@ -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;