From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 9FD3D158089 for ; Sat, 16 Sep 2023 07:24:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E30F62BC018; Sat, 16 Sep 2023 07:24:37 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C52182BC018 for ; Sat, 16 Sep 2023 07:24:37 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C80EA335D2F for ; Sat, 16 Sep 2023 07:24:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 614A91178 for ; Sat, 16 Sep 2023 07:24:35 +0000 (UTC) From: "Viorel Munteanu" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Viorel Munteanu" Message-ID: <1694849060.3bba679d7bcf5e42adc7b9e3ba11a075df82fef8.ceamac@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/yyjson/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/yyjson/files/yyjson-0.7.0-fix-clang-16-valgrind.patch X-VCS-Directories: dev-libs/yyjson/files/ X-VCS-Committer: ceamac X-VCS-Committer-Name: Viorel Munteanu X-VCS-Revision: 3bba679d7bcf5e42adc7b9e3ba11a075df82fef8 X-VCS-Branch: master Date: Sat, 16 Sep 2023 07:24:35 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 1661c12c-2178-4d93-b913-a0a6b424baae X-Archives-Hash: fcb11ae369615696734ffaa2842eb500 commit: 3bba679d7bcf5e42adc7b9e3ba11a075df82fef8 Author: Viorel Munteanu gentoo org> AuthorDate: Sat Sep 16 07:20:35 2023 +0000 Commit: Viorel Munteanu gentoo org> CommitDate: Sat Sep 16 07:24:20 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3bba679d dev-libs/yyjson: remove unused patch Signed-off-by: Viorel Munteanu gentoo.org> .../files/yyjson-0.7.0-fix-clang-16-valgrind.patch | 24 ---------------------- 1 file changed, 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 -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;