aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-tipc.c
diff options
context:
space:
mode:
authorJörg Mayer <jmayer@loplof.de>2013-09-12 16:15:54 +0000
committerJörg Mayer <jmayer@loplof.de>2013-09-12 16:15:54 +0000
commitd1ee499bc7680d057ee4c638c0881c583a875007 (patch)
tree6a6dca5a32a04357e4f16a86cce62565f3336abd /epan/dissectors/packet-tipc.c
parent95ae33c8a07a4aeceec43ac851412a580984f0c5 (diff)
emem -> wmem
svn path=/trunk/; revision=51972
Diffstat (limited to 'epan/dissectors/packet-tipc.c')
-rw-r--r--epan/dissectors/packet-tipc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-tipc.c b/epan/dissectors/packet-tipc.c
index c05d85100b..56d133058e 100644
--- a/epan/dissectors/packet-tipc.c
+++ b/epan/dissectors/packet-tipc.c
@@ -37,7 +37,7 @@
#include <glib.h>
#include <epan/packet.h>
#include <epan/etypes.h>
-#include <epan/emem.h>
+#include <epan/wmem/wmem.h>
#include <epan/reassemble.h>
#include "packet-tcp.h"
@@ -573,7 +573,7 @@ tipc_addr_to_str(guint tipc_address)
guint16 processor;
gchar *buff;
- buff = (gchar *)ep_alloc(MAX_TIPC_ADDRESS_STR_LEN);
+ buff = (gchar *)wmem_alloc(wmem_packet_scope(), MAX_TIPC_ADDRESS_STR_LEN);
processor = tipc_address & 0x0fff;