summaryrefslogtreecommitdiff
path: root/capture.c
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2012-05-16 16:29:12 +0000
committerGerald Combs <gerald@wireshark.org>2012-05-16 16:29:12 +0000
commitbdb614e264d73aef418058cc22beac80b1c6026b (patch)
tree651d12b16a08aad155bea4b4cf4698edb90010d6 /capture.c
parent46e202503a13b6e06110901cf28e0537d6054dcf (diff)
downloadwireshark-bdb614e264d73aef418058cc22beac80b1c6026b.tar.gz
Fix a bunch of uninitialized variables found by Coverity Scan. CIDs
702403, 702404, 702405, 702406, 702407, 702408, 702409, 702410, 702411, and 702412. svn path=/trunk/; revision=42658
Diffstat (limited to 'capture.c')
-rw-r--r--capture.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/capture.c b/capture.c
index 478fda357c..d9d71b0363 100644
--- a/capture.c
+++ b/capture.c
@@ -240,7 +240,7 @@ guint32 drops)
/* We're not doing a capture any more, so we don't have a save file. */
return FALSE;
}
-
+
/* Set the read filter to NULL. */
/* XXX - this is odd here; try to put it somewhere where it fits better */
cf_set_rfcode(capture_opts->cf, NULL);
@@ -566,7 +566,7 @@ capture_input_closed(capture_options *capture_opts, gchar *msg)
/* XXX: If -Q (quit-after-cap) then cf->count clr'd below so save it first */
packet_count_save = cf_get_packet_count(capture_opts->cf);
/* Tell the GUI we are not doing a capture any more.
- Must be done after the cf_finish_tail(), so file lengths are
+ Must be done after the cf_finish_tail(), so file lengths are
correctly displayed */
capture_callback_invoke(capture_cb_capture_update_finished, capture_opts);
@@ -709,7 +709,7 @@ capture_stat_start(capture_options *capture_opts) {
static void
capture_stat_cache_update(if_stat_cache_t *sc) {
- gchar stat_line[MAX_STAT_LINE_LEN];
+ gchar stat_line[MAX_STAT_LINE_LEN] = "";
gchar **stat_parts;
GList *sc_entry;
if_stat_cache_item_t *sc_item;