From 093b89ba6e00a18b6b634a354e32820ce5532432 Mon Sep 17 00:00:00 2001 From: Rene Gollent Date: Fri, 7 Dec 2012 17:34:00 -0500 Subject: [PATCH] Fix uninitialized variable that could lead to crashes. - Fixes first part of #9273. --- .../debugger/user_interface/gui/team_window/BreakpointsView.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/apps/debugger/user_interface/gui/team_window/BreakpointsView.cpp b/src/apps/debugger/user_interface/gui/team_window/BreakpointsView.cpp index f7e58e2ba1..599113b99e 100644 --- a/src/apps/debugger/user_interface/gui/team_window/BreakpointsView.cpp +++ b/src/apps/debugger/user_interface/gui/team_window/BreakpointsView.cpp @@ -28,6 +28,7 @@ BreakpointsView::BreakpointsView(Team* team, Listener* listener) BGroupView(B_HORIZONTAL, 4.0f), fTeam(team), fBreakpoint(NULL), + fWatchpoint(NULL), fListView(NULL), fToggleBreakpointButton(NULL), fRemoveBreakpointButton(NULL),