Skip to content

Commit

Permalink
projectorganizer: Fix GTK warning under some conditions
Browse files Browse the repository at this point in the history
  • Loading branch information
techee committed Feb 25, 2015
1 parent 034945a commit 7928e73
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion projectorganizer/src/prjorg-sidebar.c
Expand Up @@ -1157,7 +1157,8 @@ static gboolean follow_editor_on_idle(gpointer foo)

g_free(path);
path = NULL;
gtk_tree_model_iter_next(model, &root_iter);
if (!gtk_tree_model_iter_next(model, &root_iter))
break;
}

if (!path)
Expand Down

0 comments on commit 7928e73

Please sign in to comment.