pkgsrc-ng/devel/scmcvs/patches/patch-src_zlib.c
2014-11-05 12:41:07 +01:00

14 lines
504 B
C

$NetBSD: patch-src_zlib.c,v 1.1 2013/10/14 06:51:02 adam Exp $
--- src/zlib.c.orig 2013-10-01 10:42:54.000000000 +0000
+++ src/zlib.c
@@ -229,7 +229,7 @@ compress_buffer_input (void *closure, ch
would fetch all the available bytes, and at least one byte. */
status = (*cb->buf->input) (cb->buf->closure, bd->text,
- need, BUFFER_DATA_SIZE, &nread);
+ need ? 1 : 0, BUFFER_DATA_SIZE, &nread);
if (status == -2)
/* Don't try to recover from memory allcoation errors. */