diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2016-07-23 13:54:43 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-23 13:54:43 +0200 |
commit | 1eefff283a961dbdd6365924d76db13023abdf68 (patch) | |
tree | 9729e85e84c2fb5c0d96a31b44820ac5c73b34b9 /drivers/builtin_zlib/zlib/deflate.c | |
parent | e7884246ebf6546d6cb2560fc22a1311c66b6891 (diff) | |
parent | c1ab343f02ee04b807087f28b33b4ac279d0fda6 (diff) |
Merge pull request #5872 from akien-mga/pr-libraries-update
Update embedded libraries: rg_etc1 1.04, zlib 1.2.8, RtAudio 4.1.2
Diffstat (limited to 'drivers/builtin_zlib/zlib/deflate.c')
-rw-r--r-- | drivers/builtin_zlib/zlib/deflate.c | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/drivers/builtin_zlib/zlib/deflate.c b/drivers/builtin_zlib/zlib/deflate.c index 9e4c2cbc8a..696957705b 100644 --- a/drivers/builtin_zlib/zlib/deflate.c +++ b/drivers/builtin_zlib/zlib/deflate.c @@ -1,5 +1,5 @@ /* deflate.c -- compress data using the deflation algorithm - * Copyright (C) 1995-2012 Jean-loup Gailly and Mark Adler + * Copyright (C) 1995-2013 Jean-loup Gailly and Mark Adler * For conditions of distribution and use, see copyright notice in zlib.h */ @@ -52,7 +52,7 @@ #include "deflate.h" const char deflate_copyright[] = - " deflate 1.2.7 Copyright 1995-2012 Jean-loup Gailly and Mark Adler "; + " deflate 1.2.8 Copyright 1995-2013 Jean-loup Gailly and Mark Adler "; /* If you use the zlib library in a product, an acknowledgment is welcome in the documentation of your product. If for some reason you cannot @@ -305,7 +305,7 @@ int ZEXPORT deflateInit2_(strm, level, method, windowBits, memLevel, strategy, if (s->window == Z_NULL || s->prev == Z_NULL || s->head == Z_NULL || s->pending_buf == Z_NULL) { s->status = FINISH_STATE; - strm->msg = (char*)ERR_MSG(Z_MEM_ERROR); + strm->msg = ERR_MSG(Z_MEM_ERROR); deflateEnd (strm); return Z_MEM_ERROR; } @@ -329,7 +329,7 @@ int ZEXPORT deflateSetDictionary (strm, dictionary, dictLength) uInt str, n; int wrap; unsigned avail; - unsigned char *next; + z_const unsigned char *next; if (strm == Z_NULL || strm->state == Z_NULL || dictionary == Z_NULL) return Z_STREAM_ERROR; @@ -359,7 +359,7 @@ int ZEXPORT deflateSetDictionary (strm, dictionary, dictLength) avail = strm->avail_in; next = strm->next_in; strm->avail_in = dictLength; - strm->next_in = (Bytef *)dictionary; + strm->next_in = (z_const Bytef *)dictionary; fill_window(s); while (s->lookahead >= MIN_MATCH) { str = s->strstart; @@ -513,6 +513,8 @@ int ZEXPORT deflateParams(strm, level, strategy) strm->total_in != 0) { /* Flush the last buffer: */ err = deflate(strm, Z_BLOCK); + if (err == Z_BUF_ERROR && s->pending == 0) + err = Z_OK; } if (s->level != level) { s->level = level; |