aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2014-12-31 11:08:07 -0500
committerBill Meier <wmeier@newsguy.com>2014-12-31 16:11:42 +0000
commitb0e6fbf2d4ac4c5819d09b2a5072e74436b4f1c8 (patch)
tree21d969eb3db25868a2155e3e69106011be7cfc7f /epan
parentf7b6dcc58ca52af222cd14404c56b741abe64738 (diff)
umts_fp: Replace se_new0(...) by wmem_new0(wmem_file_scope(), ...)
Change-Id: I9d40ffd199147fb8b975c493253d5cf796be5983 Reviewed-on: https://code.wireshark.org/review/6179 Reviewed-by: Bill Meier <wmeier@newsguy.com>
Diffstat (limited to 'epan')
-rw-r--r--epan/dissectors/packet-umts_fp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-umts_fp.c b/epan/dissectors/packet-umts_fp.c
index 133e87ce73..12ad35677d 100644
--- a/epan/dissectors/packet-umts_fp.c
+++ b/epan/dissectors/packet-umts_fp.c
@@ -4524,7 +4524,7 @@ umts_fp_init_protocol(void)
switch (uat_umts_fp_ep_and_ch_records[i].channel_type) {
case CHANNEL_RACH_FDD:
/* set up conversation info for RACH FDD channels */
- umts_fp_conversation_info = se_new0(umts_fp_conversation_info_t);
+ umts_fp_conversation_info = wmem_new0(wmem_file_scope(), umts_fp_conversation_info_t);
/* Fill in the data */
umts_fp_conversation_info->iface_type = (enum fp_interface_type)uat_umts_fp_ep_and_ch_records[i].interface_type;
umts_fp_conversation_info->division = (enum division_type) uat_umts_fp_ep_and_ch_records[i].division;