From 2e37350e9d8e18151eb5b05a43afc38d60cc5699 Mon Sep 17 00:00:00 2001 From: Rene Gollent Date: Wed, 29 Oct 2014 12:28:37 -0400 Subject: [PATCH] Debugger: Fix CID 1249932. - Add missing member fields to initialization list. --- .../gui/team_window/ExpressionEvaluationWindow.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/apps/debugger/user_interface/gui/team_window/ExpressionEvaluationWindow.cpp b/src/apps/debugger/user_interface/gui/team_window/ExpressionEvaluationWindow.cpp index c8d55adb89..350cce4381 100644 --- a/src/apps/debugger/user_interface/gui/team_window/ExpressionEvaluationWindow.cpp +++ b/src/apps/debugger/user_interface/gui/team_window/ExpressionEvaluationWindow.cpp @@ -33,6 +33,9 @@ ExpressionEvaluationWindow::ExpressionEvaluationWindow( B_AUTO_UPDATE_SIZE_LIMITS | B_CLOSE_ON_ESCAPE), fTeam(team), fLanguage(language), + fExpressionInput(NULL), + fExpressionOutput(NULL), + fEvaluateButton(NULL), fListener(listener), fCloseTarget(target), fCurrentEvaluationType(B_INT64_TYPE)