Browse Source

Compiler warning introduced by Expat 2.2.3

Source commit: 830834356828f24411ef36551de70afec20a3f73
Martin Prikryl 8 years ago
parent
commit
2237383530
1 changed files with 1 additions and 1 deletions
  1. 1 1
      libs/expat/lib/loadlibrary.c

+ 1 - 1
libs/expat/lib/loadlibrary.c

@@ -77,7 +77,7 @@ typedef HMODULE (APIENTRY *LOADLIBRARYEX_FN)(LPCTSTR, HANDLE, DWORD);
 HMODULE _Expat_LoadLibrary(LPCTSTR filename)
 {
   HMODULE hModule = NULL;
-  LOADLIBRARYEX_FN pLoadLibraryEx = NULL;
+  LOADLIBRARYEX_FN pLoadLibraryEx;
 
   /* Get a handle to kernel32 so we can access it's functions at runtime */
   HMODULE hKernel32 = GetModuleHandle(TEXT("kernel32"));