Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
idnode: fix the string filter for webui
  • Loading branch information
perexg committed Nov 7, 2014
1 parent ea904c6 commit a9b1d17
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/idnode.c
Expand Up @@ -818,7 +818,8 @@ idnode_filter
}
if (strdisp)
free(strdisp);
return r;
if (r)
return r;
} else if (f->type == IF_NUM || f->type == IF_BOOL) {
int64_t a, b;
if (idnode_get_s64(in, f->key, &a))
Expand Down

0 comments on commit a9b1d17

Please sign in to comment.