- Timestamp:
- Oct 30, 2017 11:04:53 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/zip/pkzip.cpp
r69111 r69522 221 221 { 222 222 RTVFSIOSTREAM hVfsIosObj = RTVfsObjToIoStream(hVfsObj); 223 if (hVfsIos )223 if (hVfsIos != NIL_RTVFSIOSTREAM) 224 224 { 225 225 rc = RTVfsIoStrmRead(hVfsIosObj, pv, cb, true /*fBlocking*/, NULL); … … 229 229 *pcbDst = cb; 230 230 } 231 else232 RTMemFree(pv);233 231 } 232 else 233 rc = VERR_INTERNAL_ERROR_4; 234 if (RT_FAILURE(rc)) 235 RTMemFree(pv); 234 236 } 235 237 }
Note:
See TracChangeset
for help on using the changeset viewer.