Changeset 59289 in vbox for trunk/src/VBox/Runtime/r3/win
- Timestamp:
- Jan 8, 2016 3:06:00 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/win/ldrNative-win.cpp
r57358 r59289 46 46 #include <iprt/string.h> 47 47 #include "internal/ldr.h" 48 #include "internal-r3-win.h" 48 49 49 50 #ifndef LOAD_LIBRARY_SEARCH_DLL_LOAD_DIR … … 61 62 ("pszFilename='%s'\n", pszFilename), 62 63 VERR_INTERNAL_ERROR_2); 64 AssertReleaseMsg(g_hModKernel32, 65 ("rtldrNativeLoad(%s,,) is called before IPRT has configured the windows loader!\n", pszFilename)); 63 66 64 67 /* … … 163 166 int rtldrNativeLoadSystem(const char *pszFilename, const char *pszExt, uint32_t fFlags, PRTLDRMOD phLdrMod) 164 167 { 168 AssertReleaseMsg(g_hModKernel32, 169 ("rtldrNativeLoadSystem(%s,,) is called before IPRT has configured the windows loader!\n", pszFilename)); 170 165 171 /* 166 172 * We only try the System32 directory.
Note:
See TracChangeset
for help on using the changeset viewer.