aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-skype.c
diff options
context:
space:
mode:
authorJörg Mayer <jmayer@loplof.de>2013-09-14 14:33:04 +0000
committerJörg Mayer <jmayer@loplof.de>2013-09-14 14:33:04 +0000
commitf737cea032a70212c0149cbf5b8c2bcb1be4a8dd (patch)
treeaee17146eca6f7a5bac318f9bac20545059a6132 /epan/dissectors/packet-skype.c
parent7584f77567a8e45c57341b8c4885ef85fbec233d (diff)
emem -> wmem
svn path=/trunk/; revision=52038
Diffstat (limited to 'epan/dissectors/packet-skype.c')
-rw-r--r--epan/dissectors/packet-skype.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/epan/dissectors/packet-skype.c b/epan/dissectors/packet-skype.c
index 2b67ed40e2..9fb9cb6af3 100644
--- a/epan/dissectors/packet-skype.c
+++ b/epan/dissectors/packet-skype.c
@@ -43,6 +43,7 @@
#include "config.h"
#include <glib.h>
+#include <epan/wmem/wmem.h>
#include <epan/packet.h>
#include <epan/conversation.h>
@@ -176,7 +177,7 @@ dissect_skype_udp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
skype_udp_info = (skype_udp_conv_info_t *)conversation_get_proto_data(conversation, proto_skype);
if (!skype_udp_info) {
/* new conversation create local data structure */
- skype_udp_info = se_new(skype_udp_conv_info_t);
+ skype_udp_info = wmem_new(wmem_file_scope(), skype_udp_conv_info_t);
skype_udp_info->global_src_ip = 0;
skype_udp_info->global_dst_ip = 0;
conversation_add_proto_data(conversation, proto_skype,