From b9d4a1b769893751e061fc6f4c76ed53e7508faa Mon Sep 17 00:00:00 2001 From: Michael Wetherell Date: Thu, 17 Aug 2006 22:57:14 +0000 Subject: [PATCH] Crash fix from Tim Kosse. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@40656 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/msw/utils.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/msw/utils.cpp b/src/msw/utils.cpp index 9ff3e343b7..cc998c4242 100644 --- a/src/msw/utils.cpp +++ b/src/msw/utils.cpp @@ -1171,13 +1171,13 @@ bool wxIsPlatform64Bit() typedef BOOL (WINAPI *IsWow64Process_t)(HANDLE, BOOL *); wxDynamicLibrary dllKernel32(_T("kernel32.dll")); - IsWow64Process_t *pfnIsWow64Process = - (IsWow64Process_t *)dllKernel32.RawGetSymbol(_T("IsWow64Process")); + IsWow64Process_t pfnIsWow64Process = + (IsWow64Process_t)dllKernel32.RawGetSymbol(_T("IsWow64Process")); BOOL wow64 = FALSE; if ( pfnIsWow64Process ) { - (*pfnIsWow64Process)(::GetCurrentProcess(), &wow64); + pfnIsWow64Process(::GetCurrentProcess(), &wow64); } //else: running under a system without Win64 support -- 2.47.2