ieee80211: Fix Dead Store (Dead assignement/Dead increment) Warning found by Clang

Change-Id: I53bca9bc50d18a88cc6c5c5a7ae93bdd1b772903
Reviewed-on: https://code.wireshark.org/review/20504
Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com>
Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
Reviewed-by: Michael Mann <mmann78@netscape.net>
This commit is contained in:
Alexis La Goutte 2017-03-12 10:58:08 +01:00 committed by Michael Mann
parent a8b6284ed1
commit 39f6687a91
1 changed files with 2 additions and 1 deletions

View File

@ -14469,7 +14469,8 @@ ieee80211_tag_edca_param_set(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree
return tvb_captured_length(tvb);
}
offset = decode_qos_parameter_set(tree, tvb, pinfo, offset, field_data->ftype);
decode_qos_parameter_set(tree, tvb, pinfo, offset, field_data->ftype);
return tvb_captured_length(tvb);
}