mirror of
https://github.com/cookiengineer/audacity
synced 2025-07-03 22:19:07 +02:00
Fix uninitialized pointer in TrackPanel.cpp
This commit is contained in:
parent
db137ddf76
commit
3c83eab4d7
@ -7338,7 +7338,7 @@ void TrackPanel::OnNextTrack( bool shift )
|
||||
}
|
||||
|
||||
Track *t;
|
||||
Track *n;
|
||||
Track *n = nullptr;
|
||||
bool tSelected, nSelected;
|
||||
|
||||
t = GetFocusedTrack(); // Get currently focused track
|
||||
|
Loading…
x
Reference in New Issue
Block a user