rpm/0001-Fix-potential-use-of-uninitialized-pgp-struct.patch
Michal Domonkos e0ff81088a Fix OpenScanHub findings
Resolves: RHEL-22604
Resolves: RHEL-22605
2024-07-11 14:00:47 +02:00

13 lines
431 B
Diff

diff -up rpm-4.16.1.3/lib/rpmts.c.orig rpm-4.16.1.3/lib/rpmts.c
--- rpm-4.16.1.3/lib/rpmts.c.orig 2024-07-11 13:55:35.430198126 +0200
+++ rpm-4.16.1.3/lib/rpmts.c 2024-07-11 13:55:59.243061182 +0200
@@ -482,6 +482,8 @@ static int makePubkeyHeader(rpmts ts, rp
int rc = -1;
int i;
+ memset(&kd, 0, sizeof(kd));
+
if ((enc = rpmPubkeyBase64(key)) == NULL)
goto exit;
if ((dig = rpmPubkeyDig(key)) == NULL)