1. 24 2月, 2013 1 次提交
  2. 04 6月, 2012 1 次提交
    • M
      Use _snprintf for snprinf in Microsoft C. · 25e4a3da
      Mark Adler 提交于
      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
  3. 18 3月, 2012 1 次提交
  4. 17 3月, 2012 1 次提交
  5. 03 3月, 2012 1 次提交
  6. 20 2月, 2012 2 次提交
  7. 19 2月, 2012 2 次提交
  8. 30 1月, 2012 2 次提交
  9. 19 1月, 2012 1 次提交
  10. 12 12月, 2011 1 次提交
    • M
      Fix gzeof() to behave just like feof() when read is not past end of file. · 98f5779f
      Mark Adler 提交于
      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
  11. 11 12月, 2011 1 次提交
  12. 22 11月, 2011 1 次提交
  13. 20 11月, 2011 1 次提交
  14. 03 10月, 2011 2 次提交
  15. 01 10月, 2011 1 次提交
  16. 27 9月, 2011 2 次提交
  17. 10 9月, 2011 9 次提交