diff options
author | Michael Mair-Keimberger <mmk@levelnine.at> | 2023-09-05 11:16:01 +0200 |
---|---|---|
committer | Arthur Zamarin <arthurzam@gentoo.org> | 2023-09-09 21:02:19 +0300 |
commit | 0379de10b58289ee39468326e515384f9293234c (patch) | |
tree | b33021cb7537e91a10b92063df813878d6036143 /app-emulation/xen-tools | |
parent | app-misc/reptyr: add 0.10.0 (diff) | |
download | gentoo-0379de10b58289ee39468326e515384f9293234c.tar.gz gentoo-0379de10b58289ee39468326e515384f9293234c.tar.bz2 gentoo-0379de10b58289ee39468326e515384f9293234c.zip |
app-emulation/xen-tools: remove unused patch
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to 'app-emulation/xen-tools')
-rw-r--r-- | app-emulation/xen-tools/files/xen-tools-4.15.1-brotli-gcc11.patch | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/app-emulation/xen-tools/files/xen-tools-4.15.1-brotli-gcc11.patch b/app-emulation/xen-tools/files/xen-tools-4.15.1-brotli-gcc11.patch deleted file mode 100644 index c30cb328460d..000000000000 --- a/app-emulation/xen-tools/files/xen-tools-4.15.1-brotli-gcc11.patch +++ /dev/null @@ -1,33 +0,0 @@ -diff --git a/c/dec/decode.c b/c/dec/decode.c -index ae5a3d3f..7eee9688 100644 ---- a/c/dec/decode.c -+++ b/c/dec/decode.c -@@ -2033,8 +2033,10 @@ static BROTLI_NOINLINE BrotliDecoderErrorCode SafeProcessCommands( - } - - BrotliDecoderResult BrotliDecoderDecompress( -- size_t encoded_size, const uint8_t* encoded_buffer, size_t* decoded_size, -- uint8_t* decoded_buffer) { -+ size_t encoded_size, -+ const uint8_t encoded_buffer[BROTLI_ARRAY_PARAM(encoded_size)], -+ size_t* decoded_size, -+ uint8_t decoded_buffer[BROTLI_ARRAY_PARAM(*decoded_size)]) { - BrotliDecoderState s; - BrotliDecoderResult result; - size_t total_out = 0; -diff --git a/c/enc/encode.c b/c/enc/encode.c -index 8d90937b..0c49c641 100644 ---- a/c/enc/encode.c -+++ b/c/enc/encode.c -@@ -1470,8 +1470,9 @@ static size_t MakeUncompressedStream( - - BROTLI_BOOL BrotliEncoderCompress( - int quality, int lgwin, BrotliEncoderMode mode, size_t input_size, -- const uint8_t* input_buffer, size_t* encoded_size, -- uint8_t* encoded_buffer) { -+ const uint8_t input_buffer[BROTLI_ARRAY_PARAM(input_size)], -+ size_t* encoded_size, -+ uint8_t encoded_buffer[BROTLI_ARRAY_PARAM(*encoded_size)]) { - BrotliEncoderState* s; - size_t out_size = *encoded_size; - const uint8_t* input_start = input_buffer; |