Fix out-of-scope access to variable (#4810).

git-svn-id: svn://localhost/ardour2/branches/3.0@11808 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Carl Hetherington
2012-04-07 01:53:56 +00:00
parent ffc50fcf9d
commit 8d300dae85

View File

@@ -145,7 +145,8 @@ PlaylistSelector::show_for (RouteUI* ruix)
}
TreeModel::Row row;
TreeModel::Row* selected_row = 0;
TreeModel::Row selected_row;
bool have_selected = false;
TreePath this_path;
if (tr == this_track) {
@@ -173,12 +174,13 @@ PlaylistSelector::show_for (RouteUI* ruix)
child_row[columns.playlist] = *p;
if (*p == this_track->playlist()) {
selected_row = &child_row;
selected_row = child_row;
have_selected = true;
}
}
if (selected_row != 0) {
tree.get_selection()->select (*selected_row);
if (have_selected) {
tree.get_selection()->select (selected_row);
}
}