diff options
author | Evan Huus <eapache@gmail.com> | 2013-06-19 22:47:36 +0000 |
---|---|---|
committer | Evan Huus <eapache@gmail.com> | 2013-06-19 22:47:36 +0000 |
commit | b1e12ec925fd8b3b27a2c06baf655798ec0dcbb6 (patch) | |
tree | 06edd7bf499f2f294b7c723ec9fcc44f29c63274 /asn1/ros | |
parent | 8e7abd987101794c25c4cf3cdfcefc821a821fec (diff) | |
download | wireshark-b1e12ec925fd8b3b27a2c06baf655798ec0dcbb6.tar.gz wireshark-b1e12ec925fd8b3b27a2c06baf655798ec0dcbb6.tar.bz2 wireshark-b1e12ec925fd8b3b27a2c06baf655798ec0dcbb6.zip |
Convert the rest of the ASN1 dissectors from emem to wmem.
svn path=/trunk/; revision=50063
Diffstat (limited to 'asn1/ros')
-rw-r--r-- | asn1/ros/packet-ros-template.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/asn1/ros/packet-ros-template.c b/asn1/ros/packet-ros-template.c index c1277bae8c..1c411eea3b 100644 --- a/asn1/ros/packet-ros-template.c +++ b/asn1/ros/packet-ros-template.c @@ -28,7 +28,7 @@ #include <glib.h> #include <epan/packet.h> #include <epan/conversation.h> -#include <epan/emem.h> +#include <epan/wmem/wmem.h> #include <epan/asn1.h> #include <epan/expert.h> @@ -321,7 +321,7 @@ ros_match_call_response(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, gui /* if we cant reuse the old one, grab a new chunk */ if(!rcrp){ - rcrp=se_new(ros_call_response_t); + rcrp=wmem_new(wmem_file_scope(), ros_call_response_t); } rcrp->invokeId=invokeId; rcrp->req_frame=pinfo->fd->num; |