aboutsummaryrefslogtreecommitdiffstats
path: root/filter
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2012-11-30 22:29:34 +0800
committerMilan Crha <mcrha@redhat.com>2012-11-30 22:30:45 +0800
commitab3f65a15e1b6fe5bdf488e6e879899e283ccc43 (patch)
treeac594d423506e1fa1d47fbf057a1ec71947bf7a5 /filter
parent1eb7481305d0feda31538d072c206aab5dbdeabd (diff)
downloadgsoc2013-evolution-ab3f65a15e1b6fe5bdf488e6e879899e283ccc43.tar
gsoc2013-evolution-ab3f65a15e1b6fe5bdf488e6e879899e283ccc43.tar.gz
gsoc2013-evolution-ab3f65a15e1b6fe5bdf488e6e879899e283ccc43.tar.bz2
gsoc2013-evolution-ab3f65a15e1b6fe5bdf488e6e879899e283ccc43.tar.lz
gsoc2013-evolution-ab3f65a15e1b6fe5bdf488e6e879899e283ccc43.tar.xz
gsoc2013-evolution-ab3f65a15e1b6fe5bdf488e6e879899e283ccc43.tar.zst
gsoc2013-evolution-ab3f65a15e1b6fe5bdf488e6e879899e283ccc43.zip
Address couple issues found by a Coverity scan
Diffstat (limited to 'filter')
-rw-r--r--filter/e-filter-code.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/filter/e-filter-code.c b/filter/e-filter-code.c
index 394f682b60..0352703638 100644
--- a/filter/e-filter-code.c
+++ b/filter/e-filter-code.c
@@ -41,7 +41,7 @@ filter_code_build_code (EFilterElement *element,
{
GList *l;
EFilterInput *fi = (EFilterInput *) element;
- gboolean is_rawcode = fi && fi->type && g_str_equal (fi->type, "rawcode");
+ gboolean is_rawcode = fi->type && g_str_equal (fi->type, "rawcode");
if (!is_rawcode)
g_string_append (out, "(match-all ");