- Timestamp:
- Jun 30, 2016 6:28:06 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/zip/xarvfs.cpp
r61966 r61970 1033 1033 1034 1034 /** 1035 * @interface_method_impl{RTVFSOBJOPS,pfnClose} 1036 */ 1037 static DECLCALLBACK(int) rtZipXarFssFile_Close(void *pvThis) 1038 { 1039 PRTZIPXARFILE pThis = (PRTZIPXARFILE)pvThis; 1040 1041 RTVfsFileRelease(pThis->hVfsFile); 1042 pThis->hVfsFile = NIL_RTVFSFILE; 1043 1044 return rtZipXarFssIos_Close(&pThis->Ios); 1045 } 1046 1047 1048 /** 1035 1049 * @interface_method_impl{RTVFSOBJSETOPS,pfnMode} 1036 1050 */ … … 1130 1144 RTVFSOBJTYPE_FILE, 1131 1145 "XarFsStream::File", 1132 rtZipXarFss Ios_Close,1146 rtZipXarFssFile_Close, 1133 1147 rtZipXarFssIos_QueryInfo, 1134 1148 RTVFSOBJOPS_VERSION … … 1173 1187 pThis->hVfsIosDecompressor = NIL_RTVFSIOSTREAM; 1174 1188 1175 int rc =RTVfsIoStrmRelease(pThis->hVfsIosRaw);1189 RTVfsIoStrmRelease(pThis->hVfsIosRaw); 1176 1190 pThis->hVfsIosRaw = NIL_RTVFSIOSTREAM; 1177 1191 pThis->pIosRaw = NULL; 1178 1192 1179 return rc;1193 return VINF_SUCCESS; 1180 1194 } 1181 1195
Note:
See TracChangeset
for help on using the changeset viewer.