diff options
author | Alexis La Goutte <alexis.lagoutte@gmail.com> | 2011-04-26 14:41:33 +0000 |
---|---|---|
committer | Alexis La Goutte <alexis.lagoutte@gmail.com> | 2011-04-26 14:41:33 +0000 |
commit | c09449b55d07616d0d08bb9c71d4dcefff961864 (patch) | |
tree | 7d956b767709d0582cf52244cfbb5cc92aadb0a3 /epan/dissectors/packet-h223.c | |
parent | e2be220264b304dd4d92a066ccbdf997b67a703f (diff) | |
download | wireshark-c09449b55d07616d0d08bb9c71d4dcefff961864.tar.gz wireshark-c09449b55d07616d0d08bb9c71d4dcefff961864.tar.bz2 wireshark-c09449b55d07616d0d08bb9c71d4dcefff961864.zip |
Fix Dead Store (Dead assignement/Dead increment) Warning found by Clang
svn path=/trunk/; revision=36869
Diffstat (limited to 'epan/dissectors/packet-h223.c')
-rw-r--r-- | epan/dissectors/packet-h223.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/epan/dissectors/packet-h223.c b/epan/dissectors/packet-h223.c index ffca43ef13..56f7cef3ee 100644 --- a/epan/dissectors/packet-h223.c +++ b/epan/dissectors/packet-h223.c @@ -1004,7 +1004,6 @@ dissect_mux_pdu( tvbuff_t *tvb, packet_info *pinfo, guint32 pkt_offset, case 3: /* XXX not implemented */ default: - len=0; DISSECTOR_ASSERT_NOT_REACHED(); } |