aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ppcap.c
diff options
context:
space:
mode:
Diffstat (limited to 'epan/dissectors/packet-ppcap.c')
-rw-r--r--epan/dissectors/packet-ppcap.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/epan/dissectors/packet-ppcap.c b/epan/dissectors/packet-ppcap.c
index 61480822ca..30628c8555 100644
--- a/epan/dissectors/packet-ppcap.c
+++ b/epan/dissectors/packet-ppcap.c
@@ -408,9 +408,8 @@ dissect_ppcap_destination_address(tvbuff_t *tvb, packet_info * pinfo, proto_tree
else if (key2 == 4)
{
- char *string;
- string = tvb_get_string_enc(wmem_packet_scope(), tvb, offset, msg_len, ENC_UTF_8|ENC_NA);
- proto_tree_add_string(ppcap_tree1, hf_ppcap_destination_nodeid, tvb, offset, msg_len, string);
+ const guint8 *string;
+ proto_tree_add_item_ret_string(ppcap_tree1, hf_ppcap_destination_nodeid, tvb, offset, msg_len, ENC_UTF_8|ENC_NA, wmem_packet_scope(), &string);
set_address_tvb(&pinfo->net_dst, AT_STRINGZ, msg_len, tvb, offset);
copy_address_shallow(&pinfo->dst, &pinfo->net_dst);
}