From 54b6d689e5aaa56058e0c95223319221fa735821 Mon Sep 17 00:00:00 2001 From: morganamilo Date: Tue, 15 Oct 2019 10:30:01 +0100 Subject: libalpm: fix segfault when -Qip'ing a package The dummy checksigs function never sets count to 0, leaving it unitialized. This caused the siglist cleanup to try and free the empty list. Signed-off-by: Allan McRae --- lib/libalpm/signing.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/libalpm/signing.c b/lib/libalpm/signing.c index 30d057a3..fc537dd3 100644 --- a/lib/libalpm/signing.c +++ b/lib/libalpm/signing.c @@ -800,8 +800,9 @@ int _alpm_key_import(alpm_handle_t UNUSED *handle, const char UNUSED *uid, } int _alpm_gpgme_checksig(alpm_handle_t UNUSED *handle, const char UNUSED *path, - const char UNUSED *base64_sig, alpm_siglist_t UNUSED *siglist) + const char UNUSED *base64_sig, alpm_siglist_t *siglist) { + siglist->count = 0; return -1; } #endif /* HAVE_LIBGPGME */ -- cgit v1.2.3-24-g4f1b