summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--rpmio/digest.c13
1 files changed, 8 insertions, 5 deletions
diff --git a/rpmio/digest.c b/rpmio/digest.c
index 81f9f5e76..1f5e1667b 100644
--- a/rpmio/digest.c
+++ b/rpmio/digest.c
@@ -60,17 +60,20 @@ int rpmDigestBundleAdd(rpmDigestBundle bundle, int algo,
int rpmDigestBundleAddID(rpmDigestBundle bundle, int algo, int id,
rpmDigestFlags flags)
{
- DIGEST_CTX ctx = NULL;
+ int rc = -1;
if (id > 0 && findID(bundle, id) < 0) {
int ix = findID(bundle, 0); /* Find first free slot */
if (ix >= 0) {
bundle->digests[ix] = rpmDigestInit(algo, flags);
- bundle->ids[ix]= id;
- if (ix > bundle->index_max)
- bundle->index_max = ix;
+ if (bundle->digests[ix]) {
+ bundle->ids[ix]= id;
+ if (ix > bundle->index_max)
+ bundle->index_max = ix;
+ rc = 0;
+ }
}
}
- return (ctx != NULL);
+ return rc;
}
int rpmDigestBundleUpdate(rpmDigestBundle bundle, const void *data, size_t len)
{