Changeset 62584 in vbox for trunk/src/VBox/Runtime/common
- Timestamp:
- Jul 27, 2016 11:46:03 AM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 109153
- Location:
- trunk/src/VBox/Runtime/common
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/asn1/asn1-cursor.cpp
r62477 r62584 71 71 pPrimaryCursor->Cursor.pbCur = (uint8_t const *)pvFirst; 72 72 pPrimaryCursor->Cursor.cbLeft = cb; 73 pPrimaryCursor->Cursor.fFlags = fFlags;73 pPrimaryCursor->Cursor.fFlags = (uint8_t)fFlags; Assert(fFlags <= UINT8_MAX); 74 74 pPrimaryCursor->Cursor.cDepth = 0; 75 75 pPrimaryCursor->Cursor.abReserved[0] = 0; -
trunk/src/VBox/Runtime/common/dbg/dbgmoddbghelp.cpp
r62477 r62584 364 364 { 365 365 RTDBGMODBGHELPARGS *pArgs = (RTDBGMODBGHELPARGS *)pvUser; 366 RT_NOREF_PV(hLdrMod); 366 367 367 368 Log(("Segment %.*s: LinkAddress=%#llx RVA=%#llx cb=%#llx\n", -
trunk/src/VBox/Runtime/common/misc/thread.cpp
r62477 r62584 1566 1566 PRTTHREADINT pThread = (PRTTHREADINT)pNode; 1567 1567 rtThreadNativeInformDebugger(pThread); 1568 RT_NOREF_PV(pvUser); 1568 1569 return 0; 1569 1570 } -
trunk/src/VBox/Runtime/common/path/RTPathChangeToDosSlashes.cpp
r62477 r62584 45 45 RTDECL(char *) RTPathChangeToDosSlashes(char *pszPath, bool fForce) 46 46 { 47 #if !defined(RT_OS_WINDOWS) && !defined(RT_OS_OS2) 47 #if defined(RT_OS_WINDOWS) || defined(RT_OS_OS2) 48 RT_NOREF_PV(fForce); 49 #else 48 50 if (fForce) 49 51 #endif -
trunk/src/VBox/Runtime/common/path/RTPathChangeToUnixSlashes.cpp
r62477 r62584 45 45 RTDECL(char *) RTPathChangeToUnixSlashes(char *pszPath, bool fForce) 46 46 { 47 #if !defined(RT_OS_WINDOWS) && !defined(RT_OS_OS2) 47 #if defined(RT_OS_WINDOWS) || defined(RT_OS_OS2) 48 RT_NOREF_PV(fForce); 49 #else 48 50 if (fForce) 49 51 #endif -
trunk/src/VBox/Runtime/common/path/RTPathGlob.cpp
r62564 r62584 550 550 PRTPATHMATCHCACHE pCache) 551 551 { 552 RT_NOREF_PV(pCache); 553 552 554 if (iItem == 0) 553 555 { … … 602 604 PRTPATHMATCHCACHE pCache) 603 605 { 606 RT_NOREF_PV(pCache); 607 604 608 if (iItem == 0) 605 609 { -
trunk/src/VBox/Runtime/common/zip/pkzipvfs.cpp
r62564 r62584 406 406 static int rtZipPkzipParseLocalFileHeader(PRTZIPPKZIPREADER pThis, PRTZIPPKZIPLOCALFILEHDR pLfh, size_t *pcbExtra) 407 407 { 408 RT_NOREF_PV(pThis); 409 408 410 if (pLfh->cbFilename >= sizeof(pThis->szName)) 409 411 return VERR_PKZIP_NAME_TOO_LONG; -
trunk/src/VBox/Runtime/common/zip/tarcmd.cpp
r62477 r62584 549 549 } 550 550 } 551 #else 552 RT_NOREF_PV(pOwner); RT_NOREF_PV(pGroup); 551 553 #endif 552 554
Note:
See TracChangeset
for help on using the changeset viewer.