Fixes NB#140483, do not process alerts without error
authorSergio Villar Senin <svillar@igalia.com>
Mon, 28 Sep 2009 14:26:25 +0000 (16:26 +0200)
committerSergio Villar Senin <svillar@igalia.com>
Fri, 16 Oct 2009 14:27:49 +0000 (16:27 +0200)
src/modest-tny-account-store.c

index adad0fd..864cc28 100644 (file)
@@ -1089,7 +1089,8 @@ modest_tny_account_store_alert (TnyAccountStore *self,
        gboolean retval = TRUE;
 
        /* NOTE: account may be NULL in some cases */
        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) {
 
        /* Get the server name: */
        if (account) {