From 8d4cb8de353af99f03e0a3e8935e4fc73bb3f14d Mon Sep 17 00:00:00 2001 From: michaelangel007 Date: Thu, 30 Jul 2015 09:25:53 -0700 Subject: [PATCH] Fix uninit var in CmdMemoryLoad() --- source/Debugger/Debug.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/source/Debugger/Debug.cpp b/source/Debugger/Debug.cpp index c63fe018..6d01e2d8 100644 --- a/source/Debugger/Debug.cpp +++ b/source/Debugger/Debug.cpp @@ -4250,10 +4250,10 @@ Update_t CmdMemoryLoad (int nArgs) TCHAR sLoadSaveFilePath[ MAX_PATH ]; _tcscpy( sLoadSaveFilePath, g_sCurrentDir ); // TODO: g_sDebugDir - WORD nAddressStart; - WORD nAddress2 = 0; - WORD nAddressEnd = 0; - int nAddressLen = 0; + WORD nAddressStart = 0; + WORD nAddress2 = 0; + WORD nAddressEnd = 0; + int nAddressLen = 0; if( pFileType ) {