diff options
author | Julian Andres Klode <julian.klode@canonical.com> | 2020-03-10 23:00:04 +0100 |
---|---|---|
committer | Julian Andres Klode <julian.klode@canonical.com> | 2020-03-24 10:24:39 +0100 |
commit | 86c5228fb2e0d7cf841beed2f2a3c20785e4a93c (patch) | |
tree | 93ad5dd098dd9593fe092d1b32c12de80143c8d4 /doc/examples/configure-index | |
parent | 768f0031930a994ecfab84ecd6478852275a98c3 (diff) |
configure-index: Add APT::Color option
This caused unbound error list growth, because each time
we dumped an error, the calls to _config->FindB() inside
operator << would add 3 new errors of the form:
W: Using unknown config option »apt::color« of type BOOL
Hence we are dumping an infinite list of errors, and eventually
that list will exceed available memory.
Diffstat (limited to 'doc/examples/configure-index')
-rw-r--r-- | doc/examples/configure-index | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/examples/configure-index b/doc/examples/configure-index index bf9efc109..7664e0760 100644 --- a/doc/examples/configure-index +++ b/doc/examples/configure-index @@ -828,3 +828,4 @@ dir::dpkg::triplettable "<FILE>"; dir::dpkg::cputable "<FILE>"; APT::Internal::OpProgress::Absolute "<BOOL>"; +APT::Color "<BOOL>"; |