Changeset 62724 in vbox for trunk/src/VBox/Runtime/tools
- Timestamp:
- Jul 30, 2016 12:08:44 AM (8 years ago)
- Location:
- trunk/src/VBox/Runtime/tools
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/tools/RTDbgSymCache.cpp
r62477 r62724 220 220 * Create the directories in the path. 221 221 */ 222 char chSaved = RTPATH_SLASH;223 222 for (unsigned i = 0; i < 6; i++, cch += 5) 224 223 { … … 576 575 { 577 576 /* This shouldn't happen, figure out what to do if it does. */ 577 RT_NOREF_PV(pCfg); 578 578 return RTMsgErrorRc(VERR_NOT_IMPLEMENTED, 579 579 "'%s' is an OS X image file, did you point me to a file inside a .dSYM or .sym file?", … … 592 592 static int rtDbgSymCacheAddDebugPdb(const char *pszPath, PCRTDBGSYMCACHEADDCFG pCfg, RTFILE hFile) 593 593 { 594 RT_NOREF2(pCfg, hFile); 594 595 return RTMsgErrorRc(VERR_NOT_IMPLEMENTED, "PDB support not implemented: '%s'", pszPath); 595 596 } … … 1109 1110 bool fOverwriteOnConflict) 1110 1111 { 1112 RT_NOREF1(fOverwriteOnConflict); 1111 1113 RTDBGSYMCACHEADDCFG Cfg; 1112 1114 Cfg.fRecursive = fRecursive; … … 1196 1198 return RTMsgErrorExit(RTEXITCODE_FAILURE, "RTGetOptInit failed: %Rrc", rc); 1197 1199 1198 uint32_t cAdded = 0;1200 //uint32_t cAdded = 0; 1199 1201 RTGETOPTUNION ValueUnion; 1200 1202 int chOpt; -
trunk/src/VBox/Runtime/tools/RTGzip.cpp
r62477 r62724 85 85 { 86 86 /** @todo Add isatty() to IPRT. */ 87 RT_NOREF1(enmStdHandle); 87 88 return false; 88 89 } … … 189 190 190 191 uint32_t cRefs = RTVfsIoStrmRelease(*phVfsDst); 191 Assert(cRefs > 0); 192 Assert(cRefs > 0); RT_NOREF_PV(cRefs); 192 193 *phVfsDst = hVfsGzip; 193 194 … … 216 217 217 218 uint32_t cRefs = RTVfsIoStrmRelease(*phVfsSrc); 218 Assert(cRefs > 0); 219 Assert(cRefs > 0); RT_NOREF_PV(cRefs); 219 220 *phVfsSrc = hVfsGunzip; 220 221 … … 261 262 static RTEXITCODE gzipTestFile(PRTVFSIOSTREAM phVfsSrc, PCRTGZIPCMDOPTS pOpts) 262 263 { 264 RT_NOREF_PV(pOpts); 265 263 266 /* 264 267 * Read the whole stream. … … 284 287 static RTEXITCODE gzipListFile(PRTVFSIOSTREAM phVfsSrc, PCRTGZIPCMDOPTS pOpts) 285 288 { 289 RT_NOREF2(phVfsSrc, pOpts); 286 290 return RTMsgErrorExit(RTEXITCODE_FAILURE, "Listing has not been implemented"); 287 291 } … … 485 489 RTEXITCODE rcExit = RTEXITCODE_SUCCESS; 486 490 unsigned cProcessed = 0; 487 RTVFSIOSTREAM hVfsStdOut= NIL_RTVFSIOSTREAM;491 //RTVFSIOSTREAM hVfsStdOut= NIL_RTVFSIOSTREAM; 488 492 489 493 RTGETOPTSTATE GetState; -
trunk/src/VBox/Runtime/tools/RTSignTool.cpp
r62570 r62724 417 417 return RTErrInfoSetF(pErrInfo, VERR_NOT_SUPPORTED, "Unsupported signature type: %d", enmSignature); 418 418 } 419 return VINF_SUCCESS;420 419 } 421 420
Note:
See TracChangeset
for help on using the changeset viewer.