From f1dd9bc62ac984dedb6a7e7953b9f870ef961e18 Mon Sep 17 00:00:00 2001 From: Alexis La Goutte Date: Thu, 7 Aug 2014 14:39:28 +0200 Subject: Fix Dead Store (Dead assignement/Dead increment) warning found by Clang Change-Id: I19df790d18e71d45df28dc6e8731cd2e1acb098b Reviewed-on: https://code.wireshark.org/review/3826 Reviewed-by: Evan Huus --- epan/dissectors/file-mp4.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/epan/dissectors/file-mp4.c b/epan/dissectors/file-mp4.c index 911b94f00c..c3e31c7518 100644 --- a/epan/dissectors/file-mp4.c +++ b/epan/dissectors/file-mp4.c @@ -374,7 +374,7 @@ dissect_mp4_url_body(tvbuff_t *tvb, gint offset, gint len, flags = tvb_get_ntoh24(tvb, offset); proto_tree_add_item(tree, hf_mp4_full_box_flags, tvb, offset, 3, ENC_BIG_ENDIAN); - offset += 3; + /*offset += 3;*/ if (flags&ENTRY_FLAG_MOVIE) { proto_tree_add_text(tree, tvb, 0, 0, -- cgit v1.2.3