summaryrefslogtreecommitdiff
path: root/gzwrite.c
AgeCommit message (Expand)Author
2020-09-14Allocate gzlib/gzread/gzwrite structs and in/out buffers using zng_allocHans Kristian Rosbach
2020-08-31Rename ZEXPORT and ZEXTERN for consistency.Nathan Moinvaziri
2020-08-23Reintroduce support for ZLIB_CONST in compat mode. (#704)Mika Lindqvist
2019-10-22Avoid adding empty gzip member after gzflush with Z_FINISH.Mark Adler
2019-07-18Fixed use of uninitialized value found by memory sanitizer and reported by @s...Nathan Moinvaziri
2019-01-15Return an error if the gzputs string length can't fit in an int.Mark Adler
2018-12-13Avoid undefined behaviors of memcpy() in gz*printf().Mark Adler
2018-12-13Make the names in functions declarations identical to definitions.Mark Adler
2018-09-17Fix ZLIB_COMPAT=OFF and WITH_GZFILEOP=ON compilation failure.Hans Kristian Rosbach
2018-03-22Move private defines from zconf.h and zconf-ng.h to zbuild.hMika Lindqvist
2018-01-31Adapt code to support PREFIX macros and update build scriptsMika Lindqvist
2018-01-31Add function prefix (zng_) to all exported functions to allow zlib-ngHans Kristian Rosbach
2017-03-24Prevent potential division-by-zero in gzfwrite and gzfread.Hans Kristian Rosbach
2017-02-25Type cleanup...Mika Lindqvist
2017-02-13Fix build with nmake.Mika Lindqvist
2017-02-13zlib 1.2.11Mark Adler
2017-02-09Fix bug in gzwrite.c that produced corrupt gzip files.Mark Adler
2017-02-09zlib 1.2.9Mark Adler
2017-02-07Avoid some random compiler warnings on various platforms.Mark Adler
2017-02-06Add gzfwrite(), duplicating the interface of fwrite().Mark Adler
2017-02-06Don't need to emit an empty fixed block when changing parameters.Mark Adler
2017-02-06Clean up gz* function return values.Mark Adler
2017-02-02Explicitly ignore a return value in gzwrite.c.Mark Adler
2017-01-31Clean up type conversions.Mark Adler
2017-01-31Replace Z_NULL with NULL. Fix incorrect uses of NULL/Z_NULL.Mika Lindqvist
2017-01-30Revert "Loop on write() calls in gzwrite.c in case of non-blocking I/O."Hans Kristian Rosbach
2017-01-30local -> staticMika Lindqvist
2016-04-27Loop on write() calls in gzwrite.c in case of non-blocking I/O.Mark Adler
2015-11-03Improve speed of gzprintf() in transparent mode.Mark Adler
2015-11-03Avoid uninitialized access by gzclose_w().Mark Adler
2015-05-25Style cleanup for gzfile codeHans Kristian Rosbach
2015-05-17Kill Byte and BytefDaniel Axtens
2015-05-13z_const -> constDaniel Axtens
2015-05-12Convert remaining K&R function declarations to ANSI-C declarations.Hans Kristian Rosbach
2015-04-26Cleanup: Replace 'z_streamp' with 'z_stream *'Hans Kristian Rosbach
2015-04-26Cleanup: Replace 'voidpc' with 'void const *'Hans Kristian Rosbach
2014-10-18Rewrite K&R-style function prototypes to ANSI-C-style.hansr
2014-10-16Remove FAR variants of variables ushf, schf, Posf, Bytef, charf,hansr
2014-10-12Remove workarounds for non-ANSI-C compatible compilers (Part 2)hansr
2014-10-12Remove workarounds for non-ANSI-C compatible compilers (Part 1)hansr
2013-04-13Add casts in gzwrite.c for pointer differences.Mark Adler
2013-03-24zlib 1.2.7.1Mark Adler
2013-03-24Add casts and consts to ease user conversion to C++.Mark Adler
2013-03-22Add gzvprintf() as an undocumented function in zlib.Mark Adler
2012-10-01Fix bug in gzclose() when gzwrite() runs out of memory.Mark Adler
2012-09-29Fix bug where gzopen(), gzclose() would write an empty file.Mark Adler
2012-08-24Fix unintialized value bug in gzputc() introduced by const patches.Mark Adler
2012-08-13Clean up the usage of z_const and respect const usage within zlib.Mark Adler
2012-03-03Fix bug in gzclose_w() when gzwrite() fails to allocate memory.Mark Adler
2012-03-02Cast to char * in gzprintf to avoid warnings [Zinser].Mark Adler