Changeset 65999 in vbox
- Timestamp:
- Mar 8, 2017 8:04:19 PM (8 years ago)
- File:
-
- 1 edited
-
trunk/src/VBox/HostServices/SharedFolders/vbsf.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/SharedFolders/vbsf.cpp
r65288 r65999 1412 1412 1413 1413 1414 if ( !(type == SHFL_HF_TYPE_DIR || type == SHFL_HF_TYPE_FILE) 1415 || pcbBuffer == 0 1416 || pObjInfo == 0 1417 || *pcbBuffer < sizeof(SHFLFSOBJINFO)) 1418 { 1419 AssertFailed(); 1420 return VERR_INVALID_PARAMETER; 1421 } 1414 AssertReturn(type == SHFL_HF_TYPE_DIR || type == SHFL_HF_TYPE_FILE, VERR_INVALID_PARAMETER); 1415 AssertReturn(pcbBuffer != NULL, VERR_INVALID_PARAMETER); 1416 AssertReturn(pObjInfo != NULL, VERR_INVALID_PARAMETER); 1417 AssertReturn(*pcbBuffer >= sizeof(SHFLFSOBJINFO), VERR_INVALID_PARAMETER); 1422 1418 1423 1419 /** @todo other options */
Note:
See TracChangeset
for help on using the changeset viewer.

