aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-x224.c
diff options
context:
space:
mode:
authorJörg Mayer <jmayer@loplof.de>2013-09-12 22:26:43 +0000
committerJörg Mayer <jmayer@loplof.de>2013-09-12 22:26:43 +0000
commit2614ec5ea01b8f3504e2604ac57b0cc125d5e99f (patch)
treeeeb6865ecd269bb115db3fc5b8e7aa83dacb2f32 /epan/dissectors/packet-x224.c
parentc1e9555ad366a2241ecee48babe4f7e0cbc686fb (diff)
emem -> wmem
svn path=/trunk/; revision=51993
Diffstat (limited to 'epan/dissectors/packet-x224.c')
-rw-r--r--epan/dissectors/packet-x224.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-x224.c b/epan/dissectors/packet-x224.c
index c9ed77cfe8..9257c97f84 100644
--- a/epan/dissectors/packet-x224.c
+++ b/epan/dissectors/packet-x224.c
@@ -31,7 +31,7 @@
#include "packet-tpkt.h"
#include <epan/conversation.h>
-#include <epan/emem.h>
+#include <epan/wmem/wmem.h>
void proto_register_x224(void);
void proto_reg_handoff_x224(void);
@@ -227,7 +227,7 @@ dissect_x224(tvbuff_t *tvb, packet_info *pinfo, proto_tree *parent_tree, void *d
/* No. Attach that information to the conversation, and add
* it to the list of information structures.
*/
- x224_info = se_new(x224_conv_info_t);
+ x224_info = wmem_new(wmem_file_scope(), x224_conv_info_t);
x224_info->klass=0;
conversation_add_proto_data(conversation, proto_x224, x224_info);