1. 30 1月, 2012 1 次提交
    • M
      Have gzputc return the character written instead of the argument. · 22eb0118
      Mark Adler 提交于
      When successful, gzputc would return the second argument.  If the
      second argument were -1, gzputc would return -1 instead of the
      character written, which was 255.  However the -1 would not be
      distinguishable from an error.  Now gzputc returns 255 in that
      case.
      22eb0118
  2. 14 12月, 2011 1 次提交
    • M
      Avoid use of Z_BUF_ERROR in gz* functions except for premature EOF. · 850a198f
      Mark Adler 提交于
      Z_BUF_ERROR was also being used for an unsuccessful gzungetc and for buffer
      lengths that didn't fit in an int.  Those uses were changed to Z_DATA_ERROR
      in order to assure that Z_BUF_ERROR occurs only when a premature end of
      input occurs, indicating that gzclearerr() can be used.
      850a198f
  3. 11 12月, 2011 1 次提交
  4. 03 10月, 2011 2 次提交
  5. 01 10月, 2011 1 次提交
  6. 27 9月, 2011 1 次提交
  7. 12 9月, 2011 1 次提交
  8. 10 9月, 2011 7 次提交