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-11-03 21:04:19 (GMT)
committeryann.collet.73@gmail.com <yann.collet.73@gmail.com@650e7d94-2a16-8b24-b05c-7c0b3f6821cd>2012-11-03 21:04:19 (GMT)
commit5cc3efc2a5309b0047a80c9eff4675d38a11201d (patch)
tree330685909ae8def9b3a1ac32c44bcc7350fe9d05 /lz4.h
parent206f5f48cf4db19dad3de3adca1d95db335555e0 (diff)
downloadlz4-5cc3efc2a5309b0047a80c9eff4675d38a11201d.zip
lz4-5cc3efc2a5309b0047a80c9eff4675d38a11201d.tar.gz
lz4-5cc3efc2a5309b0047a80c9eff4675d38a11201d.tar.bz2
Corrected issue 38 : bench.c compilation for Sun Solaris 32 bits
Corrected issue 40 : Detect early ending of compressed stream. Thanks Adrian Grand. Corrected issue 41 : minor comment editing on lz4.h git-svn-id: https://lz4.googlecode.com/svn/trunk@82 650e7d94-2a16-8b24-b05c-7c0b3f6821cd
Diffstat (limited to 'lz4.h')
-rw-r--r--lz4.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lz4.h b/lz4.h
index 100b3ce..dee3984 100644
--- a/lz4.h
+++ b/lz4.h
@@ -60,7 +60,7 @@ LZ4_uncompress() :
osize : is the output size, therefore the original size
return : the number of bytes read in the source buffer
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 + osize, and is therefore protected against malicious data packets
+ This function never writes outside of provided buffers, and never modifies input buffer.
note : destination buffer must be already allocated.
its size must be a minimum of 'osize' bytes.
*/