aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-osi-options.c
diff options
context:
space:
mode:
authorMichael Mann <mmann78@netscape.net>2015-03-01 23:03:27 -0500
committerAnders Broman <a.broman58@gmail.com>2015-03-03 09:02:25 +0000
commitb7ef891af868b6026391d3473c0b43e7229e5b31 (patch)
tree073d847595f777447f804937957324fcbae9c653 /epan/dissectors/packet-osi-options.c
parent599dd4ffcc31bb03e44fd4ed72db4d6b8fbc38f0 (diff)
Replace tvb_get_ptr calls with a better API choice.
Just reduces the overall tvb_get_ptr usage count in the dissector directory. Change-Id: I455dc4cc9b082ecccdd254a2e5121f3353b5a812 Reviewed-on: https://code.wireshark.org/review/7491 Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'epan/dissectors/packet-osi-options.c')
-rw-r--r--epan/dissectors/packet-osi-options.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-osi-options.c b/epan/dissectors/packet-osi-options.c
index 6ae31cbca2..7d5f07db05 100644
--- a/epan/dissectors/packet-osi-options.c
+++ b/epan/dissectors/packet-osi-options.c
@@ -548,7 +548,7 @@ dissect_osi_options(guchar opt_len, tvbuff_t *tvb, int offset, proto_tree *tree)
case OSI_OPT_ADDRESS_MASK:
proto_tree_add_bytes_format_value(osi_option_tree, hf_osi_options_address_mask, tvb, offset, parm_len,
- tvb_get_ptr(tvb, offset, parm_len), "%s",
+ NULL, "%s",
print_area(tvb, offset, parm_len));
break;