Changeset 55646 in vbox for trunk/src/VBox/Runtime
- Timestamp:
- May 4, 2015 2:11:58 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/zip/tarvfs.cpp
r54370 r55646 78 78 /** The state machine state. */ 79 79 RTZIPTARREADERSTATE enmState; 80 /** The type of the previous TAR header. */ 80 /** The type of the previous TAR header. 81 * @remarks Same a enmType for the first header in the TAR stream. */ 81 82 RTZIPTARTYPE enmPrevType; 82 83 /** The type of the current TAR header. */ … … 459 460 } 460 461 if (fFirst) 462 { 461 463 pThis->enmType = enmType; 464 if (pThis->enmPrevType == RTZIPTARTYPE_INVALID) 465 pThis->enmPrevType = enmType; 466 } 462 467 463 468 /*
Note:
See TracChangeset
for help on using the changeset viewer.