aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorMartin Kaiser <wireshark@kaiser.cx>2013-09-15 16:53:11 +0000
committerMartin Kaiser <wireshark@kaiser.cx>2013-09-15 16:53:11 +0000
commit62c3c0e1f06bd7c13d7f9bed0967eb3fc291361a (patch)
tree5ac42a09dd94f7ceb2e157fb54d274b753658b20 /epan
parent4269f3065b6df01675b4ed9fdf882f19c0a2ae66 (diff)
emem -> wmem
svn path=/trunk/; revision=52066
Diffstat (limited to 'epan')
-rw-r--r--epan/dissectors/packet-rlogin.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-rlogin.c b/epan/dissectors/packet-rlogin.c
index 8332f03096..c0fbd2c17f 100644
--- a/epan/dissectors/packet-rlogin.c
+++ b/epan/dissectors/packet-rlogin.c
@@ -33,7 +33,7 @@
#include <epan/packet.h>
#include <epan/conversation.h>
-#include <epan/emem.h>
+#include <epan/wmem/wmem.h>
#include "packet-tcp.h"
@@ -395,7 +395,7 @@ dissect_rlogin(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
if (!hash_info)
{
/* Populate new data struct... */
- hash_info = se_new(rlogin_hash_entry_t);
+ hash_info = wmem_new(wmem_file_scope(), rlogin_hash_entry_t);
hash_info->state = NONE;
hash_info->info_framenum = 0; /* no frame has the number 0 */
hash_info->user_name[0] = '\0';