summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-dbs/mysql/mariadb/mm_malloc.patch
diff options
context:
space:
mode:
authorYogita Urade <yogita.urade@windriver.com>2025-05-14 10:40:23 +0530
committerKhem Raj <raj.khem@gmail.com>2025-05-14 08:37:27 -0700
commit3e958fabe9aba50eed664e99e98af8a0f957f511 (patch)
tree5652f5b80e73c48c8bd7fb2b57d8340a7970fde4 /meta-oe/recipes-dbs/mysql/mariadb/mm_malloc.patch
parent2c2d8f29596d114401328f3b70e5dc6edd9eb4bd (diff)
downloadmeta-openembedded-3e958fabe9aba50eed664e99e98af8a0f957f511.tar.gz
mariadb: upgrade 11.4.5 -> 11.4.6
This upgrade includes fix for CVE-2023-52971 Changelog: https://mariadb.com/kb/en/mariadb-11-4-6-changelog/ refresh 0001-Add-missing-includes-cstdint-and-cstdio.patch Droped 3871.patch and mm_malloc.patch as these are available in 11.4.6 Signed-off-by: Yogita Urade <yogita.urade@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-dbs/mysql/mariadb/mm_malloc.patch')
-rw-r--r--meta-oe/recipes-dbs/mysql/mariadb/mm_malloc.patch23
1 files changed, 0 insertions, 23 deletions
diff --git a/meta-oe/recipes-dbs/mysql/mariadb/mm_malloc.patch b/meta-oe/recipes-dbs/mysql/mariadb/mm_malloc.patch
deleted file mode 100644
index a590a3fa36..0000000000
--- a/meta-oe/recipes-dbs/mysql/mariadb/mm_malloc.patch
+++ /dev/null
@@ -1,23 +0,0 @@
1From 76e4c3e8d001eaaabd0fb34c136b81b82830c420 Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Tue, 15 Jun 2021 22:48:07 -0700
4Subject: [PATCH] mariadb: Fix build with clang/musl
5
6Upstream-Status: Pending
7---
8 storage/rocksdb/rocksdb/port/jemalloc_helper.h | 2 +-
9 1 file changed, 1 insertion(+), 1 deletion(-)
10
11diff --git a/storage/rocksdb/rocksdb/port/jemalloc_helper.h b/storage/rocksdb/rocksdb/port/jemalloc_helper.h
12index f6f72f8c..b9657cf3 100644
13--- a/storage/rocksdb/rocksdb/port/jemalloc_helper.h
14+++ b/storage/rocksdb/rocksdb/port/jemalloc_helper.h
15@@ -5,7 +5,7 @@
16
17 #pragma once
18
19-#if defined(__clang__)
20+#if defined(__clang__) && defined(__GLIBC__)
21 // glibc's `posix_memalign()` declaration specifies `throw()` while clang's
22 // declaration does not. There is a hack in clang to make its re-declaration
23 // compatible with glibc's if they are declared consecutively. That hack breaks