summaryrefslogtreecommitdiff
path: root/epan/dissectors/packet-bthcrp.c
diff options
context:
space:
mode:
Diffstat (limited to 'epan/dissectors/packet-bthcrp.c')
-rw-r--r--epan/dissectors/packet-bthcrp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-bthcrp.c b/epan/dissectors/packet-bthcrp.c
index 8089139b7b..3c39cf5bba 100644
--- a/epan/dissectors/packet-bthcrp.c
+++ b/epan/dissectors/packet-bthcrp.c
@@ -249,7 +249,7 @@ dissect_control(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
guint8 *id;
proto_tree_add_item(tree, hf_bthcrp_control_1284_id, tvb, offset, -1, ENC_ASCII | ENC_NA);
- id = tvb_get_string(NULL, tvb, offset, tvb_length_remaining(tvb, offset));
+ id = tvb_get_string(wmem_packet_scope(), tvb, offset, tvb_length_remaining(tvb, offset));
col_append_fstr(pinfo->cinfo, COL_INFO, " - 1284 ID: %s", id);
offset += tvb_length_remaining(tvb, offset);
}