talons

Fork of Claws Mail https://www.claws-mail
Log | Files | Refs | README | LICENSE

commit 362658e335d54328180d916802120ca500193c8d
parent 38563fce7dcf592ea3830a8696e6e574d2b4b973
Author: Werner Koch <wk@gnupg.org>
Date:   Sun, 13 Sep 2020 14:07:04 +0200

fix segv in address completion with a keyring

With my keyring and when entering for example "wk@g", then hitting
Tab, b_ref->name is NULL and addr_comparison_func segfaults.  I have
not looked closer at the problem but implemented a straightforward for
for such cases which makes the function more robust in any case.

The bug was probably triggered by my long expired key
A4D94E92B0986AB5EE9DCD755DE249965B0358A2 which has several user ids
with my name and different mail addresses - one user id has no mail
address though.

Diffstat:
Msrc/addr_compl.c | 14++++++++++++--
1 file changed, 12 insertions(+), 2 deletions(-)

diff --git a/src/addr_compl.c b/src/addr_compl.c @@ -232,8 +232,18 @@ static gint addr_comparison_func(gconstpointer a, gconstpointer b) else if (a_weight > b_weight) return 1; else { - cmp = strcmp(a_ref->name, b_ref->name); - return cmp ? cmp : g_strcmp0(a_ref->address, b_ref->address); + if (!a_ref->name || !b_ref->name) + cmp = !!a_ref->name - !!b_ref->name; + else + cmp = strcmp(a_ref->name, b_ref->name); + if (!cmp) + { + if (!a_ref->address || !b_ref->address) + cmp = !!a_ref->address - !!b_ref->address; + else + cmp = g_strcmp0(a_ref->address, b_ref->address); + } + return cmp; } }