From 8d300dae852158ce10f4d1bb1caaab06444923e4 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sat, 7 Apr 2012 01:53:56 +0000 Subject: Fix out-of-scope access to variable (#4810). git-svn-id: svn://localhost/ardour2/branches/3.0@11808 d708f5d6-7413-0410-9779-e7cbd77b26cf --- gtk2_ardour/playlist_selector.cc | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'gtk2_ardour') diff --git a/gtk2_ardour/playlist_selector.cc b/gtk2_ardour/playlist_selector.cc index f81e199d62..9e7a64e3b3 100644 --- a/gtk2_ardour/playlist_selector.cc +++ b/gtk2_ardour/playlist_selector.cc @@ -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); } } -- cgit v1.2.3