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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C4A87138239 for ; Sun, 25 Apr 2021 12:59:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CF2CEE0817; Sun, 25 Apr 2021 12:59:58 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B0262E0809 for ; Sun, 25 Apr 2021 12:59:58 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7A4273414E7 for ; Sun, 25 Apr 2021 12:59:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DBC9FC3 for ; Sun, 25 Apr 2021 12:59:55 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1619355569.cc23150d37ccb5030a9d2274adc74b35334a1443.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-games/hdl_dump/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-games/hdl_dump/files/hdl_dump-0.8.6.20060901-fortify.patch X-VCS-Directories: dev-games/hdl_dump/files/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: cc23150d37ccb5030a9d2274adc74b35334a1443 X-VCS-Branch: master Date: Sun, 25 Apr 2021 12:59:55 +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: b79edb64-ba61-40dc-bf90-65d6f6adc85b X-Archives-Hash: d19a4ff80194ae7e4d947fe0de7dec5b commit: cc23150d37ccb5030a9d2274adc74b35334a1443 Author: Michael Mair-Keimberger levelnine at> AuthorDate: Thu Apr 22 18:11:09 2021 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Sun Apr 25 12:59:29 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cc23150d dev-games/hdl_dump: remove unused patch Closes: https://github.com/gentoo/gentoo/pull/20504 Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: Michael Mair-Keimberger levelnine.at> Signed-off-by: Conrad Kostecki gentoo.org> .../files/hdl_dump-0.8.6.20060901-fortify.patch | 45 ---------------------- 1 file changed, 45 deletions(-) diff --git a/dev-games/hdl_dump/files/hdl_dump-0.8.6.20060901-fortify.patch b/dev-games/hdl_dump/files/hdl_dump-0.8.6.20060901-fortify.patch deleted file mode 100644 index 96f85d4609a..00000000000 --- a/dev-games/hdl_dump/files/hdl_dump-0.8.6.20060901-fortify.patch +++ /dev/null @@ -1,45 +0,0 @@ -http://bugs.gentoo.org/340145 - -fix buffer overflows in path handling. these defines should only be used -with host paths, so bumping them up to a larger value should be fine. - ---- a/common.h -+++ b/common.h -@@ -35,7 +35,8 @@ - C_START - - #if !defined (MAX_PATH) --# define MAX_PATH 128 -+/* This needs to be at least 256 bytes -- see iin_gi_probe_path */ -+# define MAX_PATH 1024 - #endif - - ---- a/osal.h -+++ b/osal.h -@@ -62,7 +62,8 @@ typedef struct - # define OSAL_HANDLE_INIT { -1 } /* file descriptor */ - # define OSAL_IS_OPENED(x) ((x).desc != -1) - --# define MAX_PATH 256 -+/* This needs to be at least 256 bytes -- see iin_gi_probe_path */ -+# define MAX_PATH 1024 - - #endif - typedef /*@special@*/ /*@only@*/ /*@out@*/ osal_handle_t* osal_handle_p_t; - -the magic field is 32 bytes, so strcpy-ing 32 bytes will add a 33rd NUL char. -this isn't a problem in practice as the 33rd char is "unknown_0x02", but let's -fix the issue anyways. - ---- a/apa.c -+++ b/apa.c -@@ -1270,7 +1270,7 @@ apa_initialize_ex (hio_t *hio) - set_u32 (&header.length, 128 * 1024 * 2); - set_u16 (&header.type, 0x0001); - set_ps2fs_datetime (&header.created, time (NULL)); -- strcpy (header.mbr.magic, "Sony Computer Entertainment Inc."); -+ memcpy (header.mbr.magic, "Sony Computer Entertainment Inc.", 32); - header.mbr.unknown_0x02 = 0x02; - set_ps2fs_datetime (&header.mbr.created, time (NULL)); - set_u32 (&header.checksum, apa_partition_checksum (&header));