summaryrefslogtreecommitdiff
path: root/dev-libs/yyjson/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2023-09-16 11:00:10 +0100
committerV3n3RiX <venerix@koprulu.sector>2023-09-16 11:00:10 +0100
commit3c490942d0d98701d1c0971e60911fa6bd3ecb76 (patch)
treec7e992463fec552ae6483d7b81848aa185d3559f /dev-libs/yyjson/files
parentc748acf4192a1e08c9feb2d5f0004937a4869639 (diff)
gentoo auto-resync : 16:09:2023 - 11:00:10
Diffstat (limited to 'dev-libs/yyjson/files')
-rw-r--r--dev-libs/yyjson/files/yyjson-0.7.0-fix-clang-16-valgrind.patch24
1 files changed, 0 insertions, 24 deletions
diff --git a/dev-libs/yyjson/files/yyjson-0.7.0-fix-clang-16-valgrind.patch b/dev-libs/yyjson/files/yyjson-0.7.0-fix-clang-16-valgrind.patch
deleted file mode 100644
index 33a1ceee5a26..000000000000
--- a/dev-libs/yyjson/files/yyjson-0.7.0-fix-clang-16-valgrind.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-https://github.com/ibireme/yyjson/commit/841a8c5603a1e393d95300a55b44ebc324497e82
-
-From: ibireme <ibireme@gmail.com>
-Date: Mon, 14 Aug 2023 21:33:31 +0800
-Subject: [PATCH] Fix clang-16 valgrind fail: #134
-
---- a/src/yyjson.c
-+++ b/src/yyjson.c
-@@ -2670,6 +2670,7 @@ yyjson_mut_val *yyjson_merge_patch(yyjson_mut_doc *doc,
- builder = yyjson_mut_obj(doc);
- if (unlikely(!builder)) return NULL;
-
-+ memset(&local_orig, 0, sizeof(local_orig));
- if (!yyjson_is_obj(orig)) {
- orig = &local_orig;
- orig->tag = builder->tag;
-@@ -2721,6 +2722,7 @@ yyjson_mut_val *yyjson_mut_merge_patch(yyjson_mut_doc *doc,
- builder = yyjson_mut_obj(doc);
- if (unlikely(!builder)) return NULL;
-
-+ memset(&local_orig, 0, sizeof(local_orig));
- if (!yyjson_mut_is_obj(orig)) {
- orig = &local_orig;
- orig->tag = builder->tag;