diff options
author | John Högberg <[email protected]> | 2017-08-10 14:25:34 +0200 |
---|---|---|
committer | John Högberg <[email protected]> | 2017-09-05 15:56:16 +0200 |
commit | 8e8a7f16acb479fc2737ff73e5e0b5569a7ab71f (patch) | |
tree | 080f50e154908acf0049c4245d408b3b56e2916c /erts/doc | |
parent | 948ee9b34f34a55cb4b70b7077a849c7dc7a5f18 (diff) | |
download | otp-8e8a7f16acb479fc2737ff73e5e0b5569a7ab71f.tar.gz otp-8e8a7f16acb479fc2737ff73e5e0b5569a7ab71f.tar.bz2 otp-8e8a7f16acb479fc2737ff73e5e0b5569a7ab71f.zip |
Improve zlib error messages and update test suite to fit
OTP-14527
Diffstat (limited to 'erts/doc')
-rw-r--r-- | erts/doc/src/zlib.xml | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/erts/doc/src/zlib.xml b/erts/doc/src/zlib.xml index 9c3e97d814..f5cc1b1e64 100644 --- a/erts/doc/src/zlib.xml +++ b/erts/doc/src/zlib.xml @@ -65,13 +65,17 @@ list_to_binary([Compressed|Last])</pre> <tag><c>badarg</c></tag> <item>Bad argument. </item> + <tag><c>not_initialized</c></tag> + <item>The stream hasn't been initialized, eg. if + <seealso marker="#inflateInit/1"><c>inflateInit/1</c></seealso> wasn't + called prior to a call to + <seealso marker="#inflate/2"><c>inflate/2</c></seealso>. + </item> <tag><c>data_error</c></tag> <item>The data contains errors. </item> <tag><c>stream_error</c></tag> <item>Inconsistent stream state.</item> - <tag><c>einval</c></tag> - <item>Bad value or wrong function called.</item> <tag><c>{need_dictionary,Adler32}</c></tag> <item>See <seealso marker="#inflate/2"><c>inflate/2</c></seealso>. </item> |