aboutsummaryrefslogtreecommitdiffstats
path: root/epan/epan.c
diff options
context:
space:
mode:
authorgerald <gerald@f5534014-38df-0310-8fa8-9805f1628bb7>2011-07-11 20:32:19 +0000
committergerald <gerald@f5534014-38df-0310-8fa8-9805f1628bb7>2011-07-11 20:32:19 +0000
commitce4a032157322302906a2e47eb15200c6ab10975 (patch)
tree011c39768a3be7d7d1f63d9d48d1b6e96383fdf0 /epan/epan.c
parentb4da8264db173df69ded0b5045447b3ffa7cbbdd (diff)
More GLIB_CHECK_VERSION cleanups. Update the minimum GLib/GTK+ versions
in README.devloper. Remove g_gnuc.h since it's no longer needed. Remove tvbuff_init(), tvbuff_cleanup(), reassemble_init(), and reassemble_cleanup() since they were only used for older GLib versions which didn't support GSlices. Assume we always support the "matches" operator. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@37978 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/epan.c')
-rw-r--r--epan/epan.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/epan/epan.c b/epan/epan.c
index 1eae2f184e..fb1c6494e0 100644
--- a/epan/epan.c
+++ b/epan/epan.c
@@ -101,7 +101,6 @@ epan_init(void (*register_all_protocols_func)(register_cb cb, gpointer client_da
#elif defined(HAVE_LIBGCRYPT)
gcry_check_version(NULL);
#endif
- tvbuff_init();
tap_init();
prefs_init();
proto_init(register_all_protocols_func, register_all_handoffs_func,
@@ -129,7 +128,6 @@ epan_cleanup(void)
prefs_cleanup();
packet_cleanup();
oid_resolv_cleanup();
- tvbuff_cleanup();
#ifdef HAVE_LIBGNUTLS
gnutls_global_deinit();
#endif