shell: Fix compile-time warning
cc-window.c:561:12: warning: 'matches' may be used uninitialized in this function [-Wmaybe-uninitialized]
This commit is contained in:
parent
b4b0ae8d89
commit
8a7ee8afcb
1 changed files with 1 additions and 1 deletions
|
@ -557,7 +557,7 @@ model_filter_func (GtkTreeModel *model,
|
|||
CcWindowPrivate *priv)
|
||||
{
|
||||
char **terms, **t;
|
||||
gboolean matches;
|
||||
gboolean matches = FALSE;
|
||||
|
||||
if (!priv->filter_string)
|
||||
return FALSE;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue