diff options
author | Alexis La Goutte <alexis.lagoutte@gmail.com> | 2014-11-02 16:40:02 +0100 |
---|---|---|
committer | Anders Broman <a.broman58@gmail.com> | 2014-11-02 16:43:58 +0000 |
commit | f1bdcd9ea735723c76c29104aaeac9d78bc5a994 (patch) | |
tree | 868da71c1d349c6c4a8e1ea9c6091dbea19b99e0 | |
parent | 2899a6e583be2f4ac4a635b78365d540fa41e11f (diff) | |
download | wireshark-f1bdcd9ea735723c76c29104aaeac9d78bc5a994.tar.gz wireshark-f1bdcd9ea735723c76c29104aaeac9d78bc5a994.tar.bz2 wireshark-f1bdcd9ea735723c76c29104aaeac9d78bc5a994.zip |
lzxpress: Fix Dead Store (Dead assignement/Dead increment) warning found by Clang
Change-Id: I028d8877a845af5830b17abfe7eb10d8528b334a
Reviewed-on: https://code.wireshark.org/review/5069
Reviewed-by: Anders Broman <a.broman58@gmail.com>
-rw-r--r-- | epan/compress/lzxpress.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/epan/compress/lzxpress.c b/epan/compress/lzxpress.c index d1d0b80f84..381089077c 100644 --- a/epan/compress/lzxpress.c +++ b/epan/compress/lzxpress.c @@ -69,8 +69,6 @@ gssize lzxpress_decompress(const guint8 *input, input_index = 0; indicator = 0; indicator_bit = 0; - length = 0; - offset = 0; nibble_index = 0; do { |