diff options
author | Viorel Munteanu <ceamac@gentoo.org> | 2023-09-16 10:20:35 +0300 |
---|---|---|
committer | Viorel Munteanu <ceamac@gentoo.org> | 2023-09-16 10:24:20 +0300 |
commit | 3bba679d7bcf5e42adc7b9e3ba11a075df82fef8 (patch) | |
tree | 24abadce7e70393a1b93b0018011e5ee0c39e891 /dev-libs/yyjson | |
parent | app-admin/conky: add 1.19.4 (diff) | |
download | gentoo-3bba679d7bcf5e42adc7b9e3ba11a075df82fef8.tar.gz gentoo-3bba679d7bcf5e42adc7b9e3ba11a075df82fef8.tar.bz2 gentoo-3bba679d7bcf5e42adc7b9e3ba11a075df82fef8.zip |
dev-libs/yyjson: remove unused patch
Signed-off-by: Viorel Munteanu <ceamac@gentoo.org>
Diffstat (limited to 'dev-libs/yyjson')
-rw-r--r-- | dev-libs/yyjson/files/yyjson-0.7.0-fix-clang-16-valgrind.patch | 24 |
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; |