From: Michael R Sweet Date: Wed, 20 Oct 2021 21:38:27 +0000 (-0400) Subject: Increase the size of the attribute value buffer to 1MB for large media-col-database... X-Git-Tag: v2.4b1~9 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b94651b24d277d5ff9fe2c3c4756001400bc957b;p=thirdparty%2Fcups.git Increase the size of the attribute value buffer to 1MB for large media-col-database values. --- diff --git a/tools/ipptool.c b/tools/ipptool.c index efaf4425a9..b562d52e43 100644 --- a/tools/ipptool.c +++ b/tools/ipptool.c @@ -1183,7 +1183,7 @@ do_test(_ipp_file_t *f, /* I - IPP data file */ char temp[1024]; /* Temporary string */ cups_file_t *reqfile; /* File to send */ ssize_t bytes; /* Bytes read/written */ - char buffer[131072]; /* Copy buffer */ + char buffer[1024 * 1024]; /* Copy buffer */ size_t widths[200]; /* Width of columns */ const char *error; /* Current error */