Changeset 16823 in vbox for trunk/src/VBox/Runtime/common
- Timestamp:
- Feb 17, 2009 10:41:45 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/misc/zip.cpp
r16164 r16823 34 34 *******************************************************************************/ 35 35 #define RTZIP_USE_STORE 1 36 //#define RTZIP_USE_ZLIB 136 #define RTZIP_USE_ZLIB 1 37 37 //#define RTZIP_USE_BZLIB 1 38 38 #define RTZIP_USE_LZF 1 … … 555 555 pZip->u.Zlib.avail_out = cbBuf; 556 556 int rc = Z_OK; 557 while (pZip->u.Zlib.avail_out > 0) 557 /* Be greedy reading input, even if no output buffer is left. It's possible 558 * that it's just the end of stream marker which needs to be read. Happens 559 * for incompressible blocks just larger than the input buffer size.*/ 560 while (pZip->u.Zlib.avail_out > 0 || pZip->u.Zlib.avail_in <= 0) 558 561 { 559 562 /*
Note:
See TracChangeset
for help on using the changeset viewer.