1. 15 May, 2011 2 commits
  2. 14 May, 2011 1 commit
    • * Tweak ouput from all debug options, adding a label to make debug output easier to scan
      * Tweak a couple of tests to make them more reliable
      Ben Copsey authored
  3. 11 May, 2011 1 commit
  4. 08 May, 2011 3 commits
  5. 07 May, 2011 6 commits
  6. 30 Apr, 2011 1 commit
  7. 11 Apr, 2011 12 commits
  8. 28 Mar, 2011 1 commit
  9. 04 Mar, 2011 1 commit
  10. 06 Feb, 2011 4 commits
  11. 05 Feb, 2011 7 commits
  12. 01 Feb, 2011 1 commit
    • Previously the loop terminated when the output buffer was not completely filled by the previous call. Most of the time this is correct, because if the output buffer was completely filled, there is probably more to come. However, in the situation that the output fits perfectly in the output buffer, the buffer will be completely filled, yet there is nothing left to process.  In this case we would run through the loop again calling inflate() / deflate() which would return Z_BUF_ERROR. This would manifest itself as the request (needlessly) failing.
      
      Rather than this we should simply terminate the loop when there is no more input left to process.
      
      # Please enter the commit message for your changes. Lines starting
      # with '#' will be ignored, and an empty message aborts the commit.
      #
      # Committer: Alex Deem <alexdeem@Alex-MacBook-Pro.local>
      #
      # On branch master
      # Changes to be committed:
      #   (use "git reset HEAD <file>..." to unstage)
      #
      #	modified:   Classes/ASIDataCompressor.m
      #	modified:   Classes/ASIDataDecompressor.m
      #
      Alex Deem authored