aboutsummaryrefslogtreecommitdiff
path: root/FAQ (unfollow)
Commit message (Collapse)AuthorFilesLines
2011-09-22Add assertions to fill_window() in deflate.c to match comments.Mark Adler1-0/+5
2011-09-22Assure that high-water mark initialization is always applied in deflate.Mark Adler1-1/+1
2011-09-22Avoid searching past window for Z_RLE strategy.Mark Adler1-3/+4
Without this, Z_RLE could under some circumstances read one byte past the end of the allocated sliding window. This would normally not be a problem unless the window is right at the end of an allocated page, or if a bounds checker is being used.
2011-09-11use relative symlinks for shared libsMike Frysinger1-2/+2
The DESTDIR should not be encoded into symlinks as it is only a temporary path. Further, since we install the symlinks into the same dir as the files, let's use relative links so that they can always resolve. Signed-off-by: Mike Frysinger <vapier@gentoo.org>