Changeset 46980 in vbox for trunk/src/VBox/Main
- Timestamp:
- Jul 4, 2013 11:38:28 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/ApplianceImplImport.cpp
r46972 r46980 965 965 uint64_t maxFileSize = _1M; 966 966 size_t cbRead = 0; 967 void *pBuf; 967 void *pBuf; /** @todo r=bird: You leak this buffer! throwing stuff is evil. */ 968 968 969 969 vrc = RTFileGetSize(pFile, &cbFile); … … 993 993 RTFileClose(pFile); 994 994 995 RTDIGESTTYPE digestType = RTDIGESTTYPE_UNKNOWN;996 vrc = RTManifestVerifyDigestType(pBuf, cbRead, digestType);995 RTDIGESTTYPE digestType; 996 vrc = RTManifestVerifyDigestType(pBuf, cbRead, &digestType); 997 997 998 998 if (RT_FAILURE(vrc))
Note:
See TracChangeset
for help on using the changeset viewer.