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/nsis/bzlib_private.h (+2 lines)
Lines 422-432 typedef Link Here
422
/*-- Macros for decompression. --*/
422
/*-- Macros for decompression. --*/
423
423
424
#define BZ_GET_FAST(cccc)                     \
424
#define BZ_GET_FAST(cccc)                     \
425
    if (s->tPos >= s->blockSize100k * 100000) return True; \
425
    s->tPos = s->tt[s->tPos];                 \
426
    s->tPos = s->tt[s->tPos];                 \
426
    cccc = (UChar)(s->tPos & 0xff);           \
427
    cccc = (UChar)(s->tPos & 0xff);           \
427
    s->tPos >>= 8;
428
    s->tPos >>= 8;
428
429
429
#define BZ_GET_FAST_C(cccc)                   \
430
#define BZ_GET_FAST_C(cccc)                   \
431
    if (c_tPos >= s->blockSize100k * 100000) return True; \
430
    c_tPos = c_tt[c_tPos];                    \
432
    c_tPos = c_tt[c_tPos];                    \
431
    cccc = (UChar)(c_tPos & 0xff);            \
433
    cccc = (UChar)(c_tPos & 0xff);            \
432
    c_tPos >>= 8;
434
    c_tPos >>= 8;

Return to bug 202762