ieee802154: fix Uninitialized argument value found by Clang Analyzer

Change-Id: I71282d6ef15802700f6e58308f1d8e89fe9bd24c
Reviewed-on: https://code.wireshark.org/review/14262
Reviewed-by: Michael Mann <mmann78@netscape.net>
This commit is contained in:
Alexis La Goutte 2016-03-01 06:50:35 +01:00 committed by Michael Mann
parent 64a5cd9ce0
commit 7a1f75ed2f
1 changed files with 1 additions and 1 deletions

View File

@ -1806,7 +1806,7 @@ dissect_ieee802154_payload_mlme_sub_ie(tvbuff_t *tvb, packet_info *pinfo _U_, pr
{
guint8 filter;
guint8 attr_len;
guint32 attr_bitmap;
guint32 attr_bitmap = 0;
if (psie_remaining == 0) {
expert_add_info(pinfo, tree, &ei_ieee802154_ie_format_invalid);