Changeset 62566 in vbox for trunk/src/VBox/Runtime/common
- Timestamp:
- Jul 26, 2016 3:16:41 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 109135
- Location:
- trunk/src/VBox/Runtime/common
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/dbg/dbgcfg.cpp
r62564 r62566 740 740 { 741 741 #ifdef IPRT_WITH_HTTP 742 NOREF(pszUuidMappingSubDir); /** @todo do we bother trying pszUuidMappingSubDir? */ 743 NOREF(pszCacheSuffix); /** @todo do we bother trying pszUuidMappingSubDir? */ 742 RT_NOREF_PV(pszUuidMappingSubDir); /** @todo do we bother trying pszUuidMappingSubDir? */ 743 RT_NOREF_PV(pszCacheSuffix); /** @todo do we bother trying pszUuidMappingSubDir? */ 744 RT_NOREF_PV(fFlags); 744 745 745 746 if (pThis->fFlags & RTDBGCFG_FLAGS_NO_SYM_SRV) -
trunk/src/VBox/Runtime/common/ldr/ldrPE.cpp
r62564 r62566 2383 2383 static void rtldrPE_VerifySignatureDestroy(PRTLDRMODPE pModPe, PRTLDRPESIGNATURE pSignature) 2384 2384 { 2385 RT_NOREF_PV(pModPe); 2385 2386 RTCrPkcs7ContentInfo_Delete(&pSignature->ContentInfo); 2386 2387 RTMemTmpFree(pSignature); … … 2401 2402 AssertReturn(pEntry->wCertificateType == WIN_CERT_TYPE_PKCS_SIGNED_DATA, VERR_INTERNAL_ERROR_2); 2402 2403 AssertReturn(pEntry->wRevision == WIN_CERT_REVISION_2_0, VERR_INTERNAL_ERROR_2); 2404 RT_NOREF_PV(pModPe); 2403 2405 2404 2406 RTASN1CURSORPRIMARY PrimaryCursor; -
trunk/src/VBox/Runtime/common/log/log.cpp
r62477 r62566 851 851 else 852 852 pLogger->pInt->cSecsHistoryTimeSlot = cSecsHistoryTimeSlot; 853 # endif /* IN_RING3 */ 853 # else /* !IN_RING3 */ 854 RT_NOREF_PV(pfnPhase); RT_NOREF_PV(cHistory); RT_NOREF_PV(cbHistoryFileMax); RT_NOREF_PV(cSecsHistoryTimeSlot); 855 # endif /* !IN_RING3 */ 854 856 if (pszGroupSettings) 855 857 RTLogGroupSettings(pLogger, pszGroupSettings); … … 934 936 RTLogGroupSettings(pLogger, pszValue); 935 937 } 936 # endif /* IN_RING3 */ 938 # else /* !IN_RING3 */ 939 RT_NOREF_PV(pszEnvVarBase); RT_NOREF_PV(pszFilenameFmt); RT_NOREF_PV(args); 940 # endif /* !IN_RING3 */ 937 941 938 942 /* -
trunk/src/VBox/Runtime/common/misc/aiomgr.cpp
r62477 r62566 850 850 { 851 851 PRTAIOMGRINT pThis = (PRTAIOMGRINT)pvUser; 852 bool fRunning = true;852 /*bool fRunning = true;*/ 853 853 int rc = VINF_SUCCESS; 854 854 … … 879 879 rc = rtAioMgrCheckFiles(pThis); 880 880 } 881 } while ( fRunning 882 && RT_SUCCESS(rc)); 883 881 } while ( /*fRunning - never modified 882 && */ RT_SUCCESS(rc)); 883 884 RT_NOREF_PV(hThreadSelf); 884 885 return rc; 885 886 } … … 1098 1099 { 1099 1100 PRTAIOMGRREQ pReq = (PRTAIOMGRREQ)pvObj; 1101 RT_NOREF_PV(hMemCache); RT_NOREF_PV(pvUser); 1100 1102 1101 1103 memset(pReq, 0, sizeof(RTAIOMGRREQ)); … … 1114 1116 PRTAIOMGRREQ pReq = (PRTAIOMGRREQ)pvObj; 1115 1117 int rc = RTFileAioReqDestroy(pReq->hReqIo); 1116 1117 1118 AssertRC(rc); 1119 1120 RT_NOREF_PV(hMemCache); RT_NOREF_PV(pvUser); 1118 1121 } 1119 1122 -
trunk/src/VBox/Runtime/common/zip/xarvfs.cpp
r62477 r62566 1402 1402 * @interface_method_impl{RTVFSSYMLINKOPS,pfnRead} 1403 1403 */ 1404 static DECLCALLBACK(int) rtZipXarFssSym_Read(void *pvThis, char *pszTarget, size_t cb Xarget)1404 static DECLCALLBACK(int) rtZipXarFssSym_Read(void *pvThis, char *pszTarget, size_t cbTarget) 1405 1405 { 1406 1406 PRTZIPXARBASEOBJ pThis = (PRTZIPXARBASEOBJ)pvThis; … … 1408 1408 return RTStrCopy(pszTarget, cbXarget, pThis->pXarReader->szTarget); 1409 1409 #else 1410 RT_NOREF_PV(pThis); RT_NOREF_PV(pszTarget); RT_NOREF_PV(cbTarget); 1410 1411 return VERR_NOT_IMPLEMENTED; 1411 1412 #endif … … 1819 1820 { 1820 1821 int rc; 1822 RT_NOREF_PV(pXarHdr); 1821 1823 1822 1824 /*
Note:
See TracChangeset
for help on using the changeset viewer.