* mu-util.c: return FALSE in all case for mu_util_g_set_error

This commit is contained in:
djcb
2012-05-22 16:49:57 +03:00
parent 9367f1ac6d
commit ecf18e9ac9

View File

@ -449,7 +449,7 @@ mu_util_g_set_error (GError **err, MuError errcode, const char *frm, ...)
/* don't bother with NULL errors, or errors already set */
if (!err || *err)
return;
return FALSE;
msg = NULL;
va_start (ap, frm);