Fix some Dead Store (Dead assignement/Dead increment) Warning found by Clang

svn path=/trunk/; revision=40473
This commit is contained in:
Alexis La Goutte 2012-01-13 16:36:07 +00:00
parent 0e876f1ab2
commit 99c039e0d3
1 changed files with 1 additions and 1 deletions

View File

@ -3534,7 +3534,7 @@ tvb_uncompress(tvbuff_t *tvb, const int offset, int comprlen)
comprlen -= (int) (c - compr);
inflateEnd(strm);
err = inflateInit2(strm, wbits);
inflateInit2(strm, wbits);
inits_done++;
} else if (err == Z_DATA_ERROR && uncompr == NULL &&
inits_done <= 3) {