summaryrefslogtreecommitdiffstats
path: root/programs/lz4io.c
diff options
context:
space:
mode:
authorYann Collet <cyan@fb.com>2016-11-10 00:57:33 (GMT)
committerYann Collet <cyan@fb.com>2016-11-10 00:57:33 (GMT)
commit46f74d79b7b2ae17825a15168034126e70dcc6a0 (patch)
tree8423f09b1e30ea2efa415b26c0e6ad027af7cdd2 /programs/lz4io.c
parentfe48cef50ed6d3585dcd81eae2ae0998172e8cd7 (diff)
downloadlz4-46f74d79b7b2ae17825a15168034126e70dcc6a0.zip
lz4-46f74d79b7b2ae17825a15168034126e70dcc6a0.tar.gz
lz4-46f74d79b7b2ae17825a15168034126e70dcc6a0.tar.bz2
fixed sparse on stdout
Diffstat (limited to 'programs/lz4io.c')
-rw-r--r--programs/lz4io.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/programs/lz4io.c b/programs/lz4io.c
index e8c655c..110b530 100644
--- a/programs/lz4io.c
+++ b/programs/lz4io.c
@@ -1007,6 +1007,7 @@ int LZ4IO_decompressMultipleFilenames(const char** inFileNamesTable, int ifntSiz
if (outFileName==NULL) exit(1); /* not enough memory */
ress.dstFile = stdout;
SET_BINARY_MODE(stdout);
+ if (g_sparseFileSupport==1) g_sparseFileSupport = 0;
for (i=0; i<ifntSize; i++) {
size_t const ifnSize = strlen(inFileNamesTable[i]);