From: Sergio Villar Senin Date: Mon, 28 Sep 2009 14:26:25 +0000 (+0200) Subject: Fixes NB#140483, do not process alerts without error X-Git-Tag: 3.1.4~8 X-Git-Url: http://git.maemo.org/git/?p=modest;a=commitdiff_plain;h=e1ed8f743bd5db62b5d8bdd575b60ea187178c53 Fixes NB#140483, do not process alerts without error --- diff --git a/src/modest-tny-account-store.c b/src/modest-tny-account-store.c index adad0fd..864cc28 100644 --- a/src/modest-tny-account-store.c +++ b/src/modest-tny-account-store.c @@ -1089,7 +1089,8 @@ modest_tny_account_store_alert (TnyAccountStore *self, gboolean retval = TRUE; /* NOTE: account may be NULL in some cases */ - g_return_val_if_fail (error, FALSE); + if (!error) + return FALSE; /* Get the server name: */ if (account) {