diff options
author | Mark Wielaard <mark@klomp.org> | 2020-05-17 15:43:45 +0200 |
---|---|---|
committer | Mark Wielaard <mark@klomp.org> | 2020-05-17 15:43:50 +0200 |
commit | 4022613462968382ad707a67d2a1c4daf99a6cec (patch) | |
tree | 66461f9ab60056c7db87be1aac0c9702c3200ca5 | |
parent | 475173c2d021b1bb1d0fe1845c66cf913260c03e (diff) | |
download | bzip2-4022613462968382ad707a67d2a1c4daf99a6cec.tar.gz bzip2-4022613462968382ad707a67d2a1c4daf99a6cec.tar.bz2 bzip2-4022613462968382ad707a67d2a1c4daf99a6cec.zip |
manual.xml: Add BZ_SEQUENCE_ERROR to return values of BZ2_bzDecompress
BZ_SEQUENCE_ERROR can be returned if BZ2_bzDecompress is called after
an earlier call already returned BZ_STREAM_END.
Reported-by: Vanessa McHale <vamchale@gmail.com>
-rw-r--r-- | manual.xml | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -1583,6 +1583,8 @@ BZ_MEM_ERROR | |||
1583 | BZ_STREAM_END | 1583 | BZ_STREAM_END |
1584 | if the logical end of the data stream was detected and all | 1584 | if the logical end of the data stream was detected and all |
1585 | output in has been consumed, eg s-->avail_out > 0 | 1585 | output in has been consumed, eg s-->avail_out > 0 |
1586 | BZ_SEQUENCE_ERROR | ||
1587 | if called after an earlier call already returned BZ_STREAM_END | ||
1586 | BZ_OK | 1588 | BZ_OK |
1587 | otherwise | 1589 | otherwise |
1588 | </programlisting> | 1590 | </programlisting> |