mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-03 22:56:33 +02:00
new release
This commit is contained in:
parent
2cd12c5c8f
commit
42b03f6ebd
38 changed files with 341 additions and 254 deletions
|
@ -59,7 +59,7 @@ init_compress( compress_filter_context_t *zfx, z_stream *zs )
|
|||
"unknown error" );
|
||||
}
|
||||
|
||||
zfx->outbufsize = 4096;
|
||||
zfx->outbufsize = 8192;
|
||||
zfx->outbuf = m_alloc( zfx->outbufsize );
|
||||
}
|
||||
|
||||
|
@ -112,7 +112,7 @@ init_uncompress( compress_filter_context_t *zfx, z_stream *zs )
|
|||
"unknown error" );
|
||||
}
|
||||
|
||||
zfx->inbufsize = 1024;
|
||||
zfx->inbufsize = 2048;
|
||||
zfx->inbuf = m_alloc( zfx->inbufsize );
|
||||
zs->avail_in = 0;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue