Files
packages/libs/libwebp/patches/010-mips16.patch
Alexandru Ardelean 3360cce9f8 libwebp: bump to version 1.3.2
From https://github.com/webmproject/libwebp/releases/tag/v1.3.2

- 9/13/2023: version 1.3.2
  This is a binary compatible release.
  * security fix for lossless decoder (chromium: #1479274, CVE-2023-4863)

Signed-off-by: Alexandru Ardelean <alex@shruggie.ro>
(cherry picked from commit 90c6cb2390)
2023-10-03 14:51:23 +02:00

12 lines
441 B
Diff

--- a/src/dsp/cpu.h
+++ b/src/dsp/cpu.h
@@ -124,7 +124,7 @@
//------------------------------------------------------------------------------
// MIPS defines.
-#if defined(__mips__) && !defined(__mips64) && defined(__mips_isa_rev) && \
+#if defined(__mips__) && !defined(__mips16) && !defined(__mips64) && defined(__mips_isa_rev) && \
(__mips_isa_rev >= 1) && (__mips_isa_rev < 6)
#define WEBP_USE_MIPS32
#if (__mips_isa_rev >= 2)