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

svn path=/trunk/; revision=40465
This commit is contained in:
Alexis La Goutte 2012-01-13 16:27:50 +00:00
parent f5f6ac7cdb
commit a3dbee44b3
2 changed files with 0 additions and 2 deletions

View File

@ -102,7 +102,6 @@ dissect_mpeg_audio_frame(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
if (padding > 0) {
proto_tree_add_item(tree, hf_mpeg_audio_padbytes, tvb,
offset / 8, padding, ENC_NA);
offset += padding * 8;
}
}
return TRUE;

View File

@ -514,7 +514,6 @@ dissect_mpeg_audio_frame(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
if (padding > 0) {
proto_tree_add_item(tree, hf_mpeg_audio_padbytes, tvb,
offset / 8, padding, ENC_NA);
offset += padding * 8;
}
}
return TRUE;