talons

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

commit ca0d774dc9e047340e9305ec328a3766a2f34673
parent 6dcf9b1c9fc3c6d72f1c88f321772afa58224b63
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 );