Changeset 46106 in vbox for trunk/src/VBox
- Timestamp:
- May 15, 2013 5:48:51 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/dbg/dbgmod.cpp
r46101 r46106 340 340 { 341 341 pDbgMod->pszImgFileSpecified = RTStrCacheEnter(g_hDbgModStrCache, pszName); 342 pDbgMod->pszName = RTStrCacheEnterLower(g_hDbgModStrCache, RTPathFilename(pszName));342 pDbgMod->pszName = RTStrCacheEnterLower(g_hDbgModStrCache, RTPathFilenameEx(pszName, RTPATH_STR_F_STYLE_DOS)); 343 343 if (pDbgMod->pszName) 344 344 { … … 377 377 378 378 if (!pszName) 379 pszName = RTPathFilename (pszFilename);379 pszName = RTPathFilenameEx(pszFilename, RTPATH_STR_F_STYLE_DOS); 380 380 381 381 /* … … 519 519 520 520 if (!pszName) 521 pszName = RTPathFilename (pszFilename);521 pszName = RTPathFilenameEx(pszFilename, RTPATH_STR_F_STYLE_DOS); 522 522 523 523 /* … … 945 945 AssertReturn(*pszFilename, VERR_INVALID_PARAMETER); 946 946 if (!pszName) 947 pszName = RTPathFilename (pszFilename);947 pszName = RTPathFilenameEx(pszFilename, RTPATH_STR_F_STYLE_DOS); 948 948 AssertPtrReturn(pszName, VERR_INVALID_POINTER); 949 949 AssertReturn(hLdrMod == NIL_RTLDRMOD || RTLdrSize(hLdrMod) != ~(size_t)0, VERR_INVALID_HANDLE);
Note:
See TracChangeset
for help on using the changeset viewer.