Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 202762 | Differences between
and this patch

Collapse All | Expand All

(-)clamav-0.91.2/libclamav/mspack.c (-1 / +1 lines)
Lines 734-740 void mszip_free(struct mszip_stream *zip Link Here
734
734
735
#define LZX_ENSURE_BITS(nbits)                                              \
735
#define LZX_ENSURE_BITS(nbits)                                              \
736
  while (bits_left < (nbits)) {                                         \
736
  while (bits_left < (nbits)) {                                         \
737
    if (i_ptr >= i_end) {                                               \
737
    if (i_ptr + 1 >= i_end) {                                               \
738
      if (lzx_read_input(lzx)) return lzx->error;                      \
738
      if (lzx_read_input(lzx)) return lzx->error;                      \
739
      i_ptr = lzx->i_ptr;                                               \
739
      i_ptr = lzx->i_ptr;                                               \
740
      i_end = lzx->i_end;                                               \
740
      i_end = lzx->i_end;                                               \

Return to bug 202762