From d852459377ddc10aeb94cd61da72d1196aaaf4a0 Mon Sep 17 00:00:00 2001 From: Stefan Neis Date: Fri, 3 Oct 2003 17:03:52 +0000 Subject: [PATCH] Fixed usage of uninitialized variable. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@24072 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/os2/window.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/os2/window.cpp b/src/os2/window.cpp index 6e572745bb..5fabb7d4da 100644 --- a/src/os2/window.cpp +++ b/src/os2/window.cpp @@ -2051,7 +2051,7 @@ void wxWindowOS2::GetTextExtent( int i; int l; FONTMETRICS vFM; // metrics structure - BOOL bRc; + BOOL bRc = FALSE; char* pStr; ERRORID vErrorCode; // last error id code HPS hPS;