summaryrefslogtreecommitdiffstats
path: root/lz4.h
diff options
context:
space:
mode:
authoryann.collet.73@gmail.com <yann.collet.73@gmail.com@650e7d94-2a16-8b24-b05c-7c0b3f6821cd>2012-05-07 23:10:02 (GMT)
committeryann.collet.73@gmail.com <yann.collet.73@gmail.com@650e7d94-2a16-8b24-b05c-7c0b3f6821cd>2012-05-07 23:10:02 (GMT)
commitae9eead4aeef810acfc5ee768f72d92b5028fc9f (patch)
tree7a73ede19e9da511d875c8ecf5aa6e6a05bdbe40 /lz4.h
parent6cedd1f252cd091be19f6a56526a5106b5140943 (diff)
downloadlz4-ae9eead4aeef810acfc5ee768f72d92b5028fc9f.zip
lz4-ae9eead4aeef810acfc5ee768f72d92b5028fc9f.tar.gz
lz4-ae9eead4aeef810acfc5ee768f72d92b5028fc9f.tar.bz2
Corrected : linking stage of Visual 2005 in Debug mode (issue 16)
Minor changes in comments git-svn-id: https://lz4.googlecode.com/svn/trunk@63 650e7d94-2a16-8b24-b05c-7c0b3f6821cd
Diffstat (limited to 'lz4.h')
-rw-r--r--lz4.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/lz4.h b/lz4.h
index c928825..10c71a4 100644
--- a/lz4.h
+++ b/lz4.h
@@ -85,7 +85,8 @@ LZ4_uncompress_unknownOutputSize() :
return : the number of bytes decoded in the destination buffer (necessarily <= maxOutputSize)
If the source stream is malformed, the function will stop decoding and return a negative result, indicating the byte position of the faulty instruction
This function never writes beyond dest + maxOutputSize, and is therefore protected against malicious data packets
- note : This version is slightly slower than LZ4_uncompress()
+ note : Destination buffer must be already allocated.
+ This version is slightly slower than LZ4_uncompress()
*/