summaryrefslogtreecommitdiff
path: root/epan/dissectors/packet-eigrp.c
diff options
context:
space:
mode:
authorMichael Mann <mmann78@netscape.net>2015-01-08 12:13:18 -0500
committerAnders Broman <a.broman58@gmail.com>2015-01-09 06:02:59 +0000
commit6a6e2efbf937c3533304c0814b0bff269932219e (patch)
tree065ecbf7a961ecd9588db97b70a7f11e119048dc /epan/dissectors/packet-eigrp.c
parent456095c89dd5fe257ce86d5529179295ebf9151e (diff)
downloadwireshark-6a6e2efbf937c3533304c0814b0bff269932219e.tar.gz
Have ipxnet addresses use wmem scoped memory.
Change-Id: I1d8eed2ceacccce2768590f0689cd2c83a5e56e9 Reviewed-on: https://code.wireshark.org/review/6418 Petri-Dish: Hadriel Kaplan <hadrielk@yahoo.com> Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'epan/dissectors/packet-eigrp.c')
-rw-r--r--epan/dissectors/packet-eigrp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-eigrp.c b/epan/dissectors/packet-eigrp.c
index 02ba92bf3e..f1bbcf391c 100644
--- a/epan/dissectors/packet-eigrp.c
+++ b/epan/dissectors/packet-eigrp.c
@@ -1178,7 +1178,7 @@ dissect_eigrp_ipx_addr (proto_item *ti, proto_tree *tree, tvbuff_t *tvb,
ENC_NA);
/* add it to the top level line */
- proto_item_append_text(ti," = %s", ipxnet_to_str_punct(tvb_get_ntohl(tvb, offset), ' '));
+ proto_item_append_text(ti," = %s", ipxnet_to_str_punct(wmem_packet_scope(), tvb_get_ntohl(tvb, offset), ' '));
if (unreachable) {
expert_add_info(pinfo, ti_dst, &ei_eigrp_unreachable);