aboutsummaryrefslogtreecommitdiffstats
path: root/ui/gtk/graph_analysis.h
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2014-11-18 13:13:35 -0800
committerGerald Combs <gerald@wireshark.org>2014-11-18 23:37:35 +0000
commitcfa0e5fd53870f297dbec2f0a9aef896ba11f7c5 (patch)
treee457042154a6db0a30043091cd67a0868741d453 /ui/gtk/graph_analysis.h
parentdc5b8f1093c00e759c842257b1706eab4c08f629 (diff)
voip_calls: Regression fixes.
Fix struct initialization logic. Clear a GQueue instead of deleting it. Don't crash if we have no sequence diagram items. Make sure we show all flows and not just invites. Zero allocated memory in a couple of places. Change-Id: Ia5bb3ba57cf625de4b554b354e098aa0361dff28 Reviewed-on: https://code.wireshark.org/review/5390 Reviewed-by: Gerald Combs <gerald@wireshark.org>
Diffstat (limited to 'ui/gtk/graph_analysis.h')
-rw-r--r--ui/gtk/graph_analysis.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/gtk/graph_analysis.h b/ui/gtk/graph_analysis.h
index 8b3583fd7a..0fcf480d85 100644
--- a/ui/gtk/graph_analysis.h
+++ b/ui/gtk/graph_analysis.h
@@ -99,7 +99,7 @@ typedef struct _graph_analysis_data_t {
graph_analysis_dialog_data_t dlg;
guint32 num_items;
destroy_user_data_cb on_destroy_user_data; /**< callback info for destroy */
- void *data; /**< data to be passes when on destroy */
+ void *data; /**< data to be passed when on destroy */
} graph_analysis_data_t;
graph_analysis_data_t* graph_analysis_init(seq_analysis_info_t *sainfo);