Changeset 54340 in vbox for trunk/src/VBox/Devices/Storage
- Timestamp:
- Feb 20, 2015 6:51:07 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Storage/DrvVD.cpp
r53539 r54340 1767 1767 { 1768 1768 /* Unload the crypto filter first to make sure it doesn't access the keys anymore. */ 1769 rc = VDFilterRemove(pThis->pDisk );1769 rc = VDFilterRemove(pThis->pDisk, VD_FILTER_FLAGS_DEFAULT); 1770 1770 AssertRC(rc); 1771 1771 … … 1787 1787 1788 1788 /* Load the crypt filter plugin. */ 1789 rc = VDFilterAdd(pThis->pDisk, "CRYPT", pVDIfFilter);1789 rc = VDFilterAdd(pThis->pDisk, "CRYPT", VD_FILTER_FLAGS_DEFAULT, pVDIfFilter); 1790 1790 if (RT_FAILURE(rc)) 1791 1791 pThis->pIfSecKey = NULL; … … 2235 2235 AssertRC(rc); 2236 2236 2237 rc = VDFilterAdd(pThis->pDisk, pszFilterName, pVDIfsFilter);2237 rc = VDFilterAdd(pThis->pDisk, pszFilterName, VD_FILTER_FLAGS_DEFAULT, pVDIfsFilter); 2238 2238 2239 2239 MMR3HeapFree(pszFilterName);
Note:
See TracChangeset
for help on using the changeset viewer.