diff options
| author | Julian Andres Klode <jak@debian.org> | 2024-11-02 22:26:06 +0000 |
|---|---|---|
| committer | Julian Andres Klode <jak@debian.org> | 2024-11-02 22:26:06 +0000 |
| commit | bc1fbd12789bfebf225be7af5052840a6add21e2 (patch) | |
| tree | d7978c046533bc72553018eba56ce002e7d16e90 | |
| parent | 09e853dd424a6ab53bd5791de75894a985968399 (diff) | |
| parent | 37693c47a49252861a9512a42a5b17250d60a857 (diff) | |
Merge branch 'main' into 'main'
LzmaFileFdPrivate: bump I/O buffer from 4k to 64k
See merge request apt-team/apt!380
| -rw-r--r-- | apt-pkg/contrib/fileutl.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apt-pkg/contrib/fileutl.cc b/apt-pkg/contrib/fileutl.cc index 08428e79b..262d1c8b3 100644 --- a/apt-pkg/contrib/fileutl.cc +++ b/apt-pkg/contrib/fileutl.cc @@ -1995,7 +1995,7 @@ class APT_HIDDEN LzmaFileFdPrivate: public FileFdPrivate { /*{{{*/ struct LZMAFILE { FILE* file; FileFd * const filefd; - uint8_t buffer[4096]; + uint8_t buffer[APT_BUFFER_SIZE]; lzma_stream stream; lzma_ret err; bool eof; |
