f1bce086f6
This release fixes a potential heap overflow when using a heap allocator other than jemalloc or glibc's malloc. See: https://github.com/redis/redis/pull/7963 https://raw.githubusercontent.com/redis/redis/6.0/00-RELEASENOTES Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
29 lines
1.1 KiB
Diff
29 lines
1.1 KiB
Diff
redis-001-uclibc.patch: This patch fixes redis so that it can be compiled
|
|
against uclibc. Patch originates from:
|
|
|
|
Support cross-compiling for uClibc targets
|
|
https://github.com/antirez/redis/pull/537
|
|
Mike Steinert, mike.steinert@gmail.com
|
|
|
|
Signed-off-by: Daniel Price <daniel.price@gmail.com>
|
|
[Martin: adapt to 3.0.3]
|
|
Signed-off-by: Martin Bark <martin@barkynet.com>
|
|
[Titouan: adapt to 5.0.4]
|
|
Signed-off-by: Titouan Christophe <titouan.christophe@railnova.eu>
|
|
[Fabrice: update for 6.0.9]
|
|
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
|
|
|
|
=========================================================================
|
|
diff -ur old/src/config.h new/src/config.h
|
|
--- old/src/config.h 2012-10-26 07:20:24.000000000 -0700
|
|
+++ new/src/config.h 2012-10-31 13:41:51.206309564 -0700
|
|
@@ -62,7 +62,7 @@
|
|
#endif
|
|
|
|
/* Test for backtrace() */
|
|
-#if defined(__APPLE__) || (defined(__linux__) && defined(__GLIBC__)) || \
|
|
+#if defined(__APPLE__) || (defined(__linux__) && defined(__GLIBC__) && !defined(__UCLIBC__)) || \
|
|
defined(__FreeBSD__) || ((defined(__OpenBSD__) || defined(__NetBSD__)) && defined(USE_BACKTRACE))\
|
|
|| defined(__DragonFly__)
|
|
#define HAVE_BACKTRACE 1
|