summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2017-05-25 11:06:53 +0200
committerMichael Mann <mmann78@netscape.net>2017-05-25 11:33:09 +0000
commit5a56cf6d80f9bcc7b8feaca7e990b23b217a79c2 (patch)
treebd632757408ba224f60b559d1519d518e2fcf1d1
parentda9363e202d7506674e232319d5fb6a7e05830ee (diff)
downloadwireshark-5a56cf6d80f9bcc7b8feaca7e990b23b217a79c2.tar.gz
umts_fp: Fix Dead Store (Dead assignement/Dead increment) Warning found by Clang
Change-Id: Ia3f467e7cbec0a253da42b4d549de75330c91366 Reviewed-on: https://code.wireshark.org/review/21751 Reviewed-by: sswsdev <sswsdev@gmail.com> Reviewed-by: Michael Mann <mmann78@netscape.net>
-rw-r--r--epan/dissectors/packet-umts_fp.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/epan/dissectors/packet-umts_fp.c b/epan/dissectors/packet-umts_fp.c
index baf8127e94..e5d6435e6e 100644
--- a/epan/dissectors/packet-umts_fp.c
+++ b/epan/dissectors/packet-umts_fp.c
@@ -4483,7 +4483,6 @@ heur_dissect_fp_pch(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void *d
if (!umts_fp_conversation_info) {
umts_fp_conversation_info = wmem_new0(wmem_file_scope(), umts_fp_conversation_info_t);
fill_pch_coversation_info_for_heur(umts_fp_conversation_info, pinfo);
- fp_pch_channel_info = (fp_pch_channel_info_t*)umts_fp_conversation_info->channel_specific_info;
}
tb_byte_length = (length - (pi_byte_length + 6)) * 8; /* Removing header length (4), footer length (2) and PI bitmap length*/
/* Possible TB lengths for PCH is 10 or 30 bytes ( See 3GPP TR 25.944 / 4.1.1.2 ) */