Skip to content
Snippets Groups Projects
  1. Apr 14, 2019
  2. Jan 16, 2017
  3. Jan 01, 2017
  4. Dec 31, 2016
  5. Oct 26, 2016
  6. Aug 02, 2015
  7. Jul 29, 2015
  8. Jul 06, 2015
  9. Apr 14, 2013
  10. Mar 25, 2013
  11. Mar 24, 2013
  12. Feb 24, 2013
  13. Jun 03, 2012
    • Mark Adler's avatar
      Use _snprintf for snprinf in Microsoft C. · 25e4a3da
      Mark Adler authored
      More than a decade later, Microsoft C does not support the C99
      standard.  It's good that _snprintf has a different name, since it
      does not guarantee that the result is null terminated, as does
      snprintf.  However where _snprintf is used under Microsoft C, the
      destination string is assured to be long enough, so this will not
      be a problem.  This occurs in two places, both in gzlib.c.  Where
      sprintf functionality is needed by gzprintf, vsnprintf is used in
      the case of Microsoft C.
      25e4a3da
  14. Mar 18, 2012
  15. Mar 17, 2012
  16. Mar 03, 2012
  17. Feb 20, 2012
  18. Feb 18, 2012
  19. Jan 30, 2012
  20. Jan 29, 2012
  21. Jan 19, 2012
  22. Dec 12, 2011
    • Mark Adler's avatar
      Fix gzeof() to behave just like feof() when read is not past end of file. · 98f5779f
      Mark Adler authored
      Before, gzeof() would return true (accurately) when the last read request
      went just up to the end of the uncompressed data.  In the analogous case,
      feof() would return false, only returning true when a read request goes
      past the end of the file.  This patch corrects gzeof() to behave in the
      same way as feof(), as noted in the zlib.h documentation.
      98f5779f
  23. Dec 11, 2011
  24. Nov 22, 2011
  25. Nov 19, 2011
  26. Oct 02, 2011
  27. Oct 01, 2011
  28. Sep 27, 2011
  29. Sep 10, 2011
Loading