aboutsummaryrefslogtreecommitdiff
path: root/manual.xml
diff options
context:
space:
mode:
authorMark Wielaard <mark@klomp.org>2020-05-17 15:43:45 +0200
committerMark Wielaard <mark@klomp.org>2020-05-17 15:43:50 +0200
commit4022613462968382ad707a67d2a1c4daf99a6cec (patch)
tree66461f9ab60056c7db87be1aac0c9702c3200ca5 /manual.xml
parent475173c2d021b1bb1d0fe1845c66cf913260c03e (diff)
downloadbzip2-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>
Diffstat (limited to 'manual.xml')
-rw-r--r--manual.xml2
1 files changed, 2 insertions, 0 deletions
diff --git a/manual.xml b/manual.xml
index 7c9e4ec..ba0480e 100644
--- a/manual.xml
+++ b/manual.xml
@@ -1583,6 +1583,8 @@ BZ_MEM_ERROR
1583BZ_STREAM_END 1583BZ_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
1586BZ_SEQUENCE_ERROR
1587 if called after an earlier call already returned BZ_STREAM_END
1586BZ_OK 1588BZ_OK
1587 otherwise 1589 otherwise
1588</programlisting> 1590</programlisting>