1 From 1c4c935cb73ac1ccb9693df1a51ba218a22e8ca8 Mon Sep 17 00:00:00 2001
2 From: Ming Liu <liu.ming50@gmail.com>
3 Date: Sat, 30 Sep 2017 11:15:16 +0800
4 Subject: [PATCH] repo_rpmdb.c: increase MAX_HDR_CNT and MAX_HDR_DSIZE
6 Upstream-Status: Submitted [https://github.com/openSUSE/libsolv/pull/230]
8 We encountered 'corrupt rpm' issues when installing extreme big RPM
9 packages like the kernel-devsrc package of Yocto project.
11 It can be fixed by increasing MAX_HDR_CNT and MAX_HDR_DSIZE per test.
13 Signed-off-by: Ming Liu <liu.ming50@gmail.com>
15 ext/repo_rpmdb.c | 4 ++--
16 1 file changed, 2 insertions(+), 2 deletions(-)
18 diff --git a/ext/repo_rpmdb.c b/ext/repo_rpmdb.c
19 index c7000a9..7000835 100644
20 --- a/ext/repo_rpmdb.c
21 +++ b/ext/repo_rpmdb.c
23 #define MAX_SIG_CNT 0x100000
24 #define MAX_SIG_DSIZE 0x100000
26 -#define MAX_HDR_CNT 0x100000
27 -#define MAX_HDR_DSIZE 0x2000000
28 +#define MAX_HDR_CNT 0x200000
29 +#define MAX_HDR_DSIZE 0x4000000
31 typedef struct rpmhead {