- Timestamp:
- Oct 21, 2011 2:26:05 PM (13 years ago)
- Location:
- trunk/src/VBox/Runtime/common
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/alloc/memtracker.cpp
r36674 r39080 635 635 * attribute the free operation if the tags differ - it 636 636 * makes sense at all... */ 637 NOREF(pszTag); 637 638 if (pHdr->pTag) 638 639 rtMemTrackerStateRecordFree(&pHdr->pTag->Stats, pHdr->cbUser, enmMethod); … … 931 932 static DECLCALLBACK(void) rtMemTrackerDumpLogOutput(PRTMEMTRACKEROUTPUT pThis, const char *pszFormat, ...) 932 933 { 934 NOREF(pThis); 933 935 va_list va; 934 936 va_start(va, pszFormat); … … 972 974 static DECLCALLBACK(void) rtMemTrackerDumpLogRelOutput(PRTMEMTRACKEROUTPUT pThis, const char *pszFormat, ...) 973 975 { 976 NOREF(pThis); 974 977 va_list va; 975 978 va_start(va, pszFormat); -
trunk/src/VBox/Runtime/common/checksum/ipv4.cpp
r33540 r39080 651 651 RTDECL(bool) RTNetIPv4IsDHCPValid(PCRTNETUDP pUdpHdr, PCRTNETBOOTP pDhcp, size_t cbDhcp, uint8_t *pMsgType) 652 652 { 653 ssize_t cbLeft; 654 uint8_t MsgType; 655 PCRTNETDHCPOPT pOpt; 653 ssize_t cbLeft; 654 uint8_t MsgType; 655 PCRTNETDHCPOPT pOpt; 656 NOREF(pUdpHdr); /** @todo rainy-day: Why isn't the UDP header used? */ 656 657 657 658 AssertPtrNull(pMsgType); -
trunk/src/VBox/Runtime/common/checksum/manifest2.cpp
r34941 r39080 226 226 pAttr->pszValue = NULL; 227 227 RTMemFree(pAttr); 228 NOREF(pvUser); 228 229 return 0; 229 230 } … … 300 301 PRTMANIFESTATTR pAttr = RT_FROM_MEMBER(pStr, RTMANIFESTATTR, StrCore); 301 302 pAttr->fVisited = false; 303 NOREF(pvUser); 302 304 return 0; 303 305 } … … 312 314 RTStrSpaceEnumerate(&pEntry->Attributes, rtManifestAttributeClearVisited, NULL); 313 315 pEntry->fVisited = false; 316 NOREF(pvUser); 314 317 return 0; 315 318 } -
trunk/src/VBox/Runtime/common/checksum/manifest3.cpp
r35351 r39080 318 318 if (RT_SUCCESS(rc)) 319 319 rtManifestPtIos_UpdateHashes(pThis, pSgBuf, pcbRead ? *pcbRead : ~(size_t)0); 320 Assert(off == -1); NOREF(off); 320 321 return rc; 321 322 } … … 331 332 if (RT_SUCCESS(rc)) 332 333 rtManifestPtIos_UpdateHashes(pThis, pSgBuf, pcbWritten ? *pcbWritten : ~(size_t)0); 334 Assert(off == -1); NOREF(off); 333 335 return rc; 334 336 }
Note:
See TracChangeset
for help on using the changeset viewer.