aboutsummaryrefslogtreecommitdiffstats
path: root/epan/oids_test.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2015-01-18 13:30:21 -0800
committerGuy Harris <guy@alum.mit.edu>2015-01-18 21:31:01 +0000
commit820c795618b16003951561c141cdfc0aff933d5e (patch)
tree2928cac113a7554ba2354e4c6ea0fe13216d3454 /epan/oids_test.c
parent7940bbc192d91ee156dda5a91cd7dca754836882 (diff)
This file currently does need emem.h.
Change-Id: I27e709470d92d4be32ae42a3f4672f2070eaf65e Reviewed-on: https://code.wireshark.org/review/6639 Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'epan/oids_test.c')
-rw-r--r--epan/oids_test.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/epan/oids_test.c b/epan/oids_test.c
index 8825d3c118..3a0fa7d6e3 100644
--- a/epan/oids_test.c
+++ b/epan/oids_test.c
@@ -27,6 +27,7 @@
#include <string.h>
#include <glib.h>
+#include "emem.h"
#include "oids.h"
#include "wmem/wmem.h"
@@ -495,6 +496,10 @@ main(int argc, char **argv)
oids_cleanup();
wmem_destroy_allocator(test_scope);
wmem_cleanup();
+ /*
+ * This might have been a good place for a call to ep_free_all() but that is not part of the
+ * public interface for emem.h
+ */
return result;
}