aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--epan/oid_resolv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/oid_resolv.c b/epan/oid_resolv.c
index a30daa24d5..8b0af44716 100644
--- a/epan/oid_resolv.c
+++ b/epan/oid_resolv.c
@@ -36,7 +36,7 @@
static GHashTable *oid_table = NULL;
void oid_resolv_init(void) {
- oid_table = g_hash_table_new_full(g_str_hash, g_str_equal, g_free, NULL);
+ oid_table = g_hash_table_new(g_str_hash, g_str_equal);
}
void oid_resolv_cleanup(void) {