1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-09-21 15:01:41 +02:00

gpg: Increase compress buffer size.

* g10/compress.c (init_compress): Increase buffersize.
--

This may speed up things a little bit.
This commit is contained in:
Werner Koch 2024-08-08 17:31:26 +02:00
parent 2a0caeb868
commit 7d82fca43d
No known key found for this signature in database
GPG Key ID: E3FDFF218E45B72B

View File

@ -81,7 +81,7 @@ init_compress( compress_filter_context_t *zfx, z_stream *zs )
g10_exit (2); g10_exit (2);
} }
zfx->outbufsize = 8192; zfx->outbufsize = 65536;
zfx->outbuf = xmalloc( zfx->outbufsize ); zfx->outbuf = xmalloc( zfx->outbufsize );
} }