50 lines
1.5 KiB
Diff
50 lines
1.5 KiB
Diff
From 236b802a4aa48711823a191d1b7f753c82a89ec5 Mon Sep 17 00:00:00 2001
|
|
From: Panu Matilainen <pmatilai@redhat.com>
|
|
Date: Thu, 30 Sep 2021 09:56:20 +0300
|
|
Subject: [PATCH] Refactor pgpDigParams construction to helper function
|
|
---
|
|
rpmio/rpmpgp.c | 13 +++++++++----
|
|
1 file changed, 9 insertions(+), 4 deletions(-)
|
|
|
|
diff --git a/rpmio/rpmpgp.c b/rpmio/rpmpgp.c
|
|
index b353fe6..ee97f07 100644
|
|
--- a/rpmio/rpmpgp.c
|
|
+++ b/rpmio/rpmpgp.c
|
|
@@ -1000,6 +1000,13 @@ unsigned int pgpDigParamsAlgo(pgpDigParams digp, unsigned int algotype)
|
|
return algo;
|
|
}
|
|
|
|
+static pgpDigParams pgpDigParamsNew(uint8_t tag)
|
|
+{
|
|
+ pgpDigParams digp = xcalloc(1, sizeof(*digp));
|
|
+ digp->tag = tag;
|
|
+ return digp;
|
|
+}
|
|
+
|
|
int pgpPrtParams(const uint8_t * pkts, size_t pktlen, unsigned int pkttype,
|
|
pgpDigParams * ret)
|
|
{
|
|
@@ -1017,8 +1024,7 @@ int pgpPrtParams(const uint8_t * pkts, size_t pktlen, unsigned int pkttype,
|
|
if (pkttype && pkt.tag != pkttype) {
|
|
break;
|
|
} else {
|
|
- digp = xcalloc(1, sizeof(*digp));
|
|
- digp->tag = pkt.tag;
|
|
+ digp = pgpDigParamsNew(pkt.tag);
|
|
}
|
|
}
|
|
|
|
@@ -1066,8 +1072,7 @@ int pgpPrtParamsSubkeys(const uint8_t *pkts, size_t pktlen,
|
|
digps = xrealloc(digps, alloced * sizeof(*digps));
|
|
}
|
|
|
|
- digps[count] = xcalloc(1, sizeof(**digps));
|
|
- digps[count]->tag = PGPTAG_PUBLIC_SUBKEY;
|
|
+ digps[count] = pgpDigParamsNew(PGPTAG_PUBLIC_SUBKEY);
|
|
/* Copy UID from main key to subkey */
|
|
digps[count]->userid = xstrdup(mainkey->userid);
|
|
|
|
--
|
|
2.27.0
|
|
|