Authentication-Results: name.execsw.org; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=ldZb/Axj; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=r+AitK/W Received: by mail.netbsd.org (Postfix, from userid 605) id B9B4784F16; Mon, 13 May 2024 14:22:18 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1715610138; bh=nSa7EQrkDZqJ0I3klo8VPtle3zYNX92fNWjxOsBYuGc=; h=Date:From:Subject:To:Reply-To:List-Id:List-Unsubscribe; b=ldZb/AxjgKOixrmvBkj1mXilZksLrGVQ+hC0MQyrBzMwn9kG4dA2Ay+ZcCSY3quym M3RT/1pFhcZSTrCpzRTFVPSx59Zvf//ukGfhsjIWKVMoMIV8B8OSGdr2U1jAX7WE2+ KbTLL0apVctD6olmCArn5xNeikXHF4VLX5VmBswg= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id AA2D984F14 for ; Mon, 13 May 2024 14:22:17 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Authentication-Results: mail.netbsd.org (amavisd-new); dkim=pass (1024-bit key) header.d=netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id o4s1TtS2gVLX for ; Mon, 13 May 2024 14:22:17 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 2442C84EFF for ; Mon, 13 May 2024 14:22:17 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1715610137; bh=nSa7EQrkDZqJ0I3klo8VPtle3zYNX92fNWjxOsBYuGc=; h=Date:From:Subject:To:Reply-To; b=r+AitK/WHPKvywlrIfqc/0l2VDOSqBkVy+/RDqD7rqghauMfDPKK1wx1l5EG27vhJ mZUivpaMoPykUiZuQGJF6eh+mCtoPrtAxnSanXspVbjhiTfX01qVfn53LxTKG4gcQo 1u1I/tdUD8UtRCIKwPEhRQHvN7QRxMAL0eklXWEA= Received: by cvs.NetBSD.org (Postfix, from userid 500) id 1E766FA2C; Mon, 13 May 2024 14:22:17 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1715610137151590" MIME-Version: 1.0 Date: Mon, 13 May 2024 14:22:17 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/textproc/cJSON To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20240513142217.1E766FA2C@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1715610137151590 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Mon May 13 14:22:17 UTC 2024 Modified Files: pkgsrc/textproc/cJSON: Makefile distinfo Log Message: cJSON: updated to 1.7.18 1.7.18 (May 13, 2024) Fixes: * Add NULL check to cJSON_SetValuestring()(CVE-2024-31755) * Remove non-functional list handling of compiler flags * Fix heap buffer overflow * remove misused optimization flag -01 * Set free'd pointers to NULL whenever they are not reassigned immediately after To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 pkgsrc/textproc/cJSON/Makefile cvs rdiff -u -r1.5 -r1.6 pkgsrc/textproc/cJSON/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1715610137151590 Content-Disposition: inline Content-Length: 1521 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/textproc/cJSON/Makefile diff -u pkgsrc/textproc/cJSON/Makefile:1.4 pkgsrc/textproc/cJSON/Makefile:1.5 --- pkgsrc/textproc/cJSON/Makefile:1.4 Mon Jan 1 11:49:57 2024 +++ pkgsrc/textproc/cJSON/Makefile Mon May 13 14:22:16 2024 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.4 2024/01/01 11:49:57 adam Exp $ +# $NetBSD: Makefile,v 1.5 2024/05/13 14:22:16 adam Exp $ -DISTNAME= cJSON-1.7.17 +DISTNAME= cJSON-1.7.18 CATEGORIES= textproc MASTER_SITES= ${MASTER_SITE_GITHUB:=DaveGamble/} GITHUB_TAG= v${PKGVERSION_NOREV} Index: pkgsrc/textproc/cJSON/distinfo diff -u pkgsrc/textproc/cJSON/distinfo:1.5 pkgsrc/textproc/cJSON/distinfo:1.6 --- pkgsrc/textproc/cJSON/distinfo:1.5 Mon Jan 1 11:49:57 2024 +++ pkgsrc/textproc/cJSON/distinfo Mon May 13 14:22:16 2024 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.5 2024/01/01 11:49:57 adam Exp $ +$NetBSD: distinfo,v 1.6 2024/05/13 14:22:16 adam Exp $ -BLAKE2s (cJSON-1.7.17.tar.gz) = 3e507bad43e00954ccfed7364772c0439b7617d9cbe32f089af0d915a79a3deb -SHA512 (cJSON-1.7.17.tar.gz) = 4feebafa5225297fa3e6a7bf23f8d31b5c3e172f437078c5a07528522ad58ca2e9c72dd9e8611241d2b8321e9aa0a1a9af7743689d1c2001d1d9cb624aae6fa8 -Size (cJSON-1.7.17.tar.gz) = 353748 bytes +BLAKE2s (cJSON-1.7.18.tar.gz) = 1ec328922fe6d128800de25bde34658f9dcae6d33fec73c0873dfa59d35ac6ee +SHA512 (cJSON-1.7.18.tar.gz) = 2accb507c6b97222eb5f0232c015b356cf6d248d1247049928731aa8e897378245e62395c232b1ec57d28d1e53ac72c849be85e59c33616a382d40473649f66b +Size (cJSON-1.7.18.tar.gz) = 354726 bytes --_----------=_1715610137151590--