From: Michael Schroeder Date: Wed, 5 Jun 2019 13:18:26 +0000 (+0200) Subject: Allow the complete 32bit for the rpm database id X-Git-Tag: 0.7.5~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=333675f96bc30b6247769ba409a1092f9ab3132a;p=thirdparty%2Flibsolv.git Allow the complete 32bit for the rpm database id --- diff --git a/src/repo_solv.c b/src/repo_solv.c index be339677..761d06e6 100644 --- a/src/repo_solv.c +++ b/src/repo_solv.c @@ -1220,7 +1220,7 @@ printf("=> %s %s %p\n", pool_id2str(pool, keys[key].name), pool_id2str(pool, key default: if (id == RPM_RPMDBID && s && keys[key].type == REPOKEY_TYPE_NUM) { - dp = data_read_id_max(dp, &id, 0, 0, &data); + dp = data_read_id(dp, &id); if (!repo->rpmdbid) repo->rpmdbid = repo_sidedata_create(repo, sizeof(Id)); repo->rpmdbid[(s - pool->solvables) - repo->start] = id;