Skip to content

Commit

Permalink
Debugger: Fix uninitialized variable.
Browse files Browse the repository at this point in the history
MemoryView:
- fTrackingMouse wasn't being initialized in the constructor, which would
  lead to the memory view sometimes thinking it was in mouse tracking mode
  immediately when opened.
  • Loading branch information
anevilyak committed May 27, 2015
1 parent 0e8de13 commit 8a74210
Showing 1 changed file with 1 addition and 0 deletions.
Expand Up @@ -58,6 +58,7 @@ MemoryView::MemoryView(::Team* team, Listener* listener)
fSelectionStart(0),
fSelectionEnd(0),
fScrollRunner(NULL),
fTrackingMouse(false),
fListener(listener)
{
Architecture* architecture = team->GetArchitecture();
Expand Down

0 comments on commit 8a74210

Please sign in to comment.