Changeset 54117 in vbox for trunk/src/VBox/Storage/VMDK.cpp
- Timestamp:
- Feb 9, 2015 5:08:28 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Storage/VMDK.cpp
r50988 r54117 564 564 /* If we get here, there's no matching entry in the cache. */ 565 565 pVmdkFile = (PVMDKFILE)RTMemAllocZ(sizeof(VMDKFILE)); 566 if (! VALID_PTR(pVmdkFile))566 if (!pVmdkFile) 567 567 { 568 568 *ppVmdkFile = NULL; … … 571 571 572 572 pVmdkFile->pszFilename = RTStrDup(pszFilename); 573 if (! VALID_PTR(pVmdkFile->pszFilename))573 if (!pVmdkFile->pszFilename) 574 574 { 575 575 RTMemFree(pVmdkFile);
Note:
See TracChangeset
for help on using the changeset viewer.