aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Gilbert2017-08-12 20:17:56 -0400
committerPaul Gilbert2017-08-12 20:17:56 -0400
commit4a945162c5c53d3d8237a1feef4bdf067ff61874 (patch)
tree1bafbce7e4288353eb0fc5e0eaf6e2a8548058b4
parentf132cbcf8570eb2a125d6c079997762ffffdab08 (diff)
downloadscummvm-rg350-4a945162c5c53d3d8237a1feef4bdf067ff61874.tar.gz
scummvm-rg350-4a945162c5c53d3d8237a1feef4bdf067ff61874.tar.bz2
scummvm-rg350-4a945162c5c53d3d8237a1feef4bdf067ff61874.zip
COMMON: Added freeing notes to zlib wrapper methods
-rw-r--r--common/zlib.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/common/zlib.h b/common/zlib.h
index 5adba64076..c8877e98a1 100644
--- a/common/zlib.h
+++ b/common/zlib.h
@@ -111,6 +111,7 @@ bool inflateZlibInstallShield(byte *dst, uint dstLen, const byte *src, uint srcL
* still need the length carried along with the stream, and you know
* the decompressed length at wrap-time, then it can be supplied as knownSize
* here. knownSize will be ignored if the GZip-stream DOES include a length.
+ * The created stream also becomes responsible for freeing the passed stream.
*
* It is safe to call this with a NULL parameter (in this case, NULL is
* returned).
@@ -125,6 +126,7 @@ SeekableReadStream *wrapCompressedReadStream(SeekableReadStream *toBeWrapped, ui
* transparent on-the-fly compression. The compressed data is written in the
* gzip format, unless ZLIB support has been disabled, in which case the given
* stream is returned unmodified (and in particular, not wrapped).
+ * The created stream also becomes responsible for freeing the passed stream.
*
* It is safe to call this with a NULL parameter (in this case, NULL is
* returned).