aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-mpeg-audio.c
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2012-01-13 16:27:50 +0000
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2012-01-13 16:27:50 +0000
commita3dbee44b3b444039db1170ef2620d47c3ee7488 (patch)
tree0ea859511ec52b04a5d05e2684246ad20d300cfe /epan/dissectors/packet-mpeg-audio.c
parentf5f6ac7cdb86b36f0031491b304f98680bd340f4 (diff)
Fix some Dead Store (Dead assignement/Dead increment) Warning found by Clang
svn path=/trunk/; revision=40465
Diffstat (limited to 'epan/dissectors/packet-mpeg-audio.c')
-rw-r--r--epan/dissectors/packet-mpeg-audio.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/epan/dissectors/packet-mpeg-audio.c b/epan/dissectors/packet-mpeg-audio.c
index 5445a9b5e5..da5f2e50a9 100644
--- a/epan/dissectors/packet-mpeg-audio.c
+++ b/epan/dissectors/packet-mpeg-audio.c
@@ -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;