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>
This commit is contained in:
Guy Harris 2015-01-18 13:30:21 -08:00
parent 7940bbc192
commit 820c795618
1 changed files with 5 additions and 0 deletions

View File

@ -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;
}