aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ieee802154.c
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2012-10-15 15:59:47 +0000
committerAnders Broman <anders.broman@ericsson.com>2012-10-15 15:59:47 +0000
commit606542f4e722520f81261d0b0c41bea3db684822 (patch)
tree8330e9c15323b48d8b8f0a744b233ed37f99260a /epan/dissectors/packet-ieee802154.c
parent46484ff0f7f271d37f9dbdd0cb95283e55c186ab (diff)
From Rakesh Kumar:
Error in AUXILIARY SECURITY HEADER Parsing for 802.15.4 in dissect_ieee802154_common function. Offset should be +8 not +4 https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7864 svn path=/trunk/; revision=45559
Diffstat (limited to 'epan/dissectors/packet-ieee802154.c')
-rw-r--r--epan/dissectors/packet-ieee802154.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-ieee802154.c b/epan/dissectors/packet-ieee802154.c
index 5f4f7ddbf9..6eef9c9701 100644
--- a/epan/dissectors/packet-ieee802154.c
+++ b/epan/dissectors/packet-ieee802154.c
@@ -948,7 +948,7 @@ dissect_ieee802154_common(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, g
packet->key_source.addr64 = tvb_get_ntoh64(tvb, offset);
proto_tree_add_uint64(field_tree, hf_ieee802154_aux_sec_key_source, tvb, offset, 8, packet->key_source.addr64);
proto_item_set_len(ti, 1 + 8);
- offset += 4;
+ offset += 8;
}
/* Add key identifier. */
packet->key_index = tvb_get_guint8(tvb, offset);