talons

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

commit 212a1301c2b17da8420c420ab30a56da40a3d63b
parent 7f594fb60db0ff987313c7fdb82241733b333410
Author: Andrej Kacian <ticho@claws-mail.org>
Date:   Mon,  5 Mar 2018 10:33:57 +0100

Fix use of uninitialized variable in addressbook edit person dialog.

Diffstat:
Msrc/editaddress.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/editaddress.c b/src/editaddress.c @@ -445,7 +445,7 @@ static void edit_person_email_delete( gpointer data ) { GtkTreeIter iter; GtkTreeSelection *sel; ItemEMail *email; - gboolean has_row; + gboolean has_row = FALSE; gint n; edit_person_email_clear( NULL );