summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYasuyuki Tanaka <yatch1.tanaka@toshiba.co.jp>2017-06-28 10:10:21 +0900
committerAnders Broman <a.broman58@gmail.com>2017-07-03 12:52:56 +0000
commit2c58ed569ed0c096d5640fd0da5825bcfef04aeb (patch)
treea3eaebff79abb20423c0447c7b9ac07d41fa26df
parentfaed12e6ffecf09bef8cf494184ce501615f0173 (diff)
downloadwireshark-2c58ed569ed0c096d5640fd0da5825bcfef04aeb.tar.gz
ieee802154: fix a bug preventing Payload Terminate IE dissection
Bug: 13867 Change-Id: Ib251b8646ddf428f0aa053dd91b613c027145d20 Reviewed-on: https://code.wireshark.org/review/22499 Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Anders Broman <a.broman58@gmail.com>
-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 1d292c74bb..b5e5d132e7 100644
--- a/epan/dissectors/packet-ieee802154.c
+++ b/epan/dissectors/packet-ieee802154.c
@@ -3012,7 +3012,7 @@ dissect_ieee802154_payload_ie(tvbuff_t *tvb, packet_info *pinfo _U_, proto_tree
offset += pie_length;
}
}
- } while ((tvb_reported_length_remaining(tvb, offset) - IEEE802154_FCS_LEN > 1)
+ } while ((tvb_reported_length_remaining(tvb, offset) > 1)
&& (pie_id != IEEE802154_PAYLOAD_IE_GID_TERM));
// Once the dissection is over, the length of the header is known