aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/mtp3_stat.c
diff options
context:
space:
mode:
authorJeff Morriss <jeff.morriss@ulticom.com>2007-03-17 08:56:11 +0000
committerJeff Morriss <jeff.morriss@ulticom.com>2007-03-17 08:56:11 +0000
commitbe214868a58cf6ee9f5b1884a3cff08f1aaa1a55 (patch)
tree4e119dd3a85cc9dd3e416cf1c7036160f2607352 /gtk/mtp3_stat.c
parentc833b61b6b64ba6b83f1faaedd50442f8cd9c588 (diff)
Fix bug 1336:
http://bugs.wireshark.org/bugzilla/show_bug.cgi?id=1336 Since mtp3_stat_draw() returns immediately if passed a NULL tapdata pointer, call it with a pointer to the stat data (instead of NULL) in mtp3_stat_gtk_cb(). svn path=/trunk/; revision=21042
Diffstat (limited to 'gtk/mtp3_stat.c')
-rw-r--r--gtk/mtp3_stat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/mtp3_stat.c b/gtk/mtp3_stat.c
index 40117aa427..95e388fb3c 100644
--- a/gtk/mtp3_stat.c
+++ b/gtk/mtp3_stat.c
@@ -428,7 +428,7 @@ mtp3_stat_gtk_cb(
mtp3_stat_gtk_win_create(&dlg, "MTP3 Statistics");
- mtp3_stat_draw(NULL);
+ mtp3_stat_draw(&mtp3_stat);
}