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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-ppcap.c b/epan/dissectors/packet-ppcap.c
index 5587d06f64..ac5711564b 100644
--- a/epan/dissectors/packet-ppcap.c
+++ b/epan/dissectors/packet-ppcap.c
@@ -184,7 +184,7 @@ static int
dissect_ppcap_payload_type(tvbuff_t *tvb, proto_tree * ppcap_tree1, int offset, guint16 msg_len, payload_type_type *payload_type)
{
char *string;
- string = tvb_get_ephemeral_string(tvb, offset, msg_len);
+ string = tvb_get_string(wmem_packet_scope(), tvb, offset, msg_len);
if (strcmp(string,"mtp3") == 0) {
*payload_type = PPCAP_MTP3;
@@ -375,7 +375,7 @@ dissect_ppcap_destination_address(tvbuff_t *tvb, packet_info * pinfo, proto_tree
else if (key2 == 4)
{
char *string;
- string = tvb_get_g_string(tvb, offset, msg_len);
+ string = tvb_get_string(wmem_packet_scope(), tvb, offset, msg_len);
proto_tree_add_string(ppcap_tree1, hf_ppcap_destination_nodeid, tvb, offset, msg_len, string);
TVB_SET_ADDRESS(&pinfo->net_dst, AT_STRINGZ, tvb, offset, msg_len);
COPY_ADDRESS_SHALLOW(&pinfo->dst, &pinfo->net_dst);