summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStig Bjørlykke <stig@bjorlykke.org>2009-06-02 10:40:58 +0000
committerStig Bjørlykke <stig@bjorlykke.org>2009-06-02 10:40:58 +0000
commit077d995cc16360952efe9ae4807125dff0182f69 (patch)
tree139b5719faa5fae8067ff994ba3ff3023b9f7a76
parentc77ceafb0a05b7b854f09c4dfa0b59e240953e28 (diff)
downloadwireshark-077d995cc16360952efe9ae4807125dff0182f69.tar.gz
From Jim Young (bug 2504):
Quick fix to sync expert_tapdata_s. svn path=/trunk/; revision=28592
-rw-r--r--gtk/expert_comp_dlg.c1
-rw-r--r--gtk/expert_comp_table.h1
2 files changed, 2 insertions, 0 deletions
diff --git a/gtk/expert_comp_dlg.c b/gtk/expert_comp_dlg.c
index 9a19ce996d..da351944aa 100644
--- a/gtk/expert_comp_dlg.c
+++ b/gtk/expert_comp_dlg.c
@@ -227,6 +227,7 @@ expert_comp_init(const char *optarg _U_, void* userdata _U_)
ss=g_malloc(sizeof(expert_comp_dlg_t));
etd=g_malloc(sizeof(expert_tapdata_t));
+ etd->table = NULL;
etd->all_events = NULL;
etd->new_events = NULL;
etd->disp_events = 0;
diff --git a/gtk/expert_comp_table.h b/gtk/expert_comp_table.h
index 7be77b968e..63335980f1 100644
--- a/gtk/expert_comp_table.h
+++ b/gtk/expert_comp_table.h
@@ -54,6 +54,7 @@ typedef struct _error_equiv_table {
typedef struct _expert_tapdata_s {
GtkWidget *win;
GtkWidget *scrolled_window;
+ GtkCList *table;
GtkWidget *label;
GList *all_events;
GList *new_events;