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

Collapse All | Expand All

(-)../../src/uncompr.c.orig (-1 / +1 lines)
Lines 39-45 Link Here
39
39
40
    stream.next_out = dest;
40
    stream.next_out = dest;
41
    stream.avail_out = (uInt)*destLen;
41
    stream.avail_out = (uInt)*destLen;
42
    if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR;
42
    if ((uLong)stream.avail_out != (uInt)*destLen) return Z_BUF_ERROR;
43
43
44
    stream.zalloc = (alloc_func)0;
44
    stream.zalloc = (alloc_func)0;
45
    stream.zfree = (free_func)0;
45
    stream.zfree = (free_func)0;

Return to bug 91950