summaryrefslogtreecommitdiffstats
path: root/programs
diff options
context:
space:
mode:
authorYann Collet <yann.collet.73@gmail.com>2015-03-29 12:28:32 (GMT)
committerYann Collet <yann.collet.73@gmail.com>2015-03-29 12:28:32 (GMT)
commit8cb06d5b9922b16854b05081ce829c223a8129fd (patch)
tree90ce83e8949d054b336aaffc72f7463b2dfab3f8 /programs
parentd5da787c1bd92a22c87b6428321668548155995f (diff)
downloadlz4-8cb06d5b9922b16854b05081ce829c223a8129fd.zip
lz4-8cb06d5b9922b16854b05081ce829c223a8129fd.tar.gz
lz4-8cb06d5b9922b16854b05081ce829c223a8129fd.tar.bz2
lz4frame validates contentSize during decompression
Diffstat (limited to 'programs')
-rw-r--r--programs/frametest.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/programs/frametest.c b/programs/frametest.c
index b73cc4e..96d5acb 100644
--- a/programs/frametest.c
+++ b/programs/frametest.c
@@ -740,7 +740,7 @@ int main(int argc, char** argv)
int proba = FUZ_COMPRESSIBILITY_DEFAULT;
int result=0;
- // Check command line
+ /* Check command line */
programName = argv[0];
for(argNb=1; argNb<argc; argNb++)
{
@@ -830,7 +830,7 @@ int main(int argc, char** argv)
}
}
- // Get Seed
+ /* Get Seed */
printf("Starting lz4frame tester (%i-bits, %s)\n", (int)(sizeof(size_t)*8), LZ4_VERSION);
if (!seedset) seed = FUZ_GetMilliStart() % 10000;