Changeset 63561 in vbox for trunk/src/VBox/Runtime/common/misc
- Timestamp:
- Aug 16, 2016 2:02:22 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 110216
- Location:
- trunk/src/VBox/Runtime/common/misc
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/misc/aiomgr.cpp
r62570 r63561 510 510 */ 511 511 if ( !fAlignedReq 512 /** @todo :|| ((pEpClassFile->uBitmaskAlignment & (RTR3UINTPTR)pvBuf) != (RTR3UINTPTR)pvBuf) */)512 /** @todo || ((pEpClassFile->uBitmaskAlignment & (RTR3UINTPTR)pvBuf) != (RTR3UINTPTR)pvBuf) */) 513 513 { 514 514 /* Create bounce buffer. */ … … 519 519 pReq->offBounceBuffer = pReq->off - offStart; 520 520 521 /** @todo :I think we need something like a RTMemAllocAligned method here.521 /** @todo I think we need something like a RTMemAllocAligned method here. 522 522 * Current assumption is that the maximum alignment is 4096byte 523 523 * (GPT disk on Windows) … … 867 867 { 868 868 /* Something bad happened. */ 869 /** @todo :*/869 /** @todo */ 870 870 } 871 871 else … … 1076 1076 else 1077 1077 { 1078 /** @todo :Real S/G buffer support. */1078 /** @todo Real S/G buffer support. */ 1079 1079 rtAioMgrReqFree(pAioMgr, pReq); 1080 1080 rc = VERR_NOT_SUPPORTED; -
trunk/src/VBox/Runtime/common/misc/json.cpp
r62564 r63561 355 355 return rtJsonTokenizerIsEos(pTokenizer) 356 356 ? '\0' 357 : pTokenizer->achBuf[pTokenizer->offBuf + 1]; /** @todo :Read out of bounds */357 : pTokenizer->achBuf[pTokenizer->offBuf + 1]; /** @todo Read out of bounds */ 358 358 } 359 359 … … 1059 1059 case RTJSONTOKENCLASS_EOS: 1060 1060 default: 1061 /** @todo :Error info */1061 /** @todo Error info */ 1062 1062 rc = VERR_JSON_MALFORMED; 1063 1063 break; -
trunk/src/VBox/Runtime/common/misc/s3.cpp
r62635 r63561 972 972 char *apszHead[5] = 973 973 { 974 /* todo:For now we use octet-stream for all types. Later we should try974 /** @todo For now we use octet-stream for all types. Later we should try 975 975 * to set the right one (libmagic from the file packet could be a 976 976 * candidate for finding the right type). */
Note:
See TracChangeset
for help on using the changeset viewer.