1. 19 Jul, 2009 2 commits
  2. 18 Jul, 2009 1 commit
    • Max Kellermann's avatar
      ape: check the tag size (fixes integer underflow) · a988b9b0
      Max Kellermann authored
      The expression "tagLen - size > 0" may result in an integer underflow
      and a buffer overflow, when "size" is larger than "tagLen".  "size" is
      read from the input file, and must not be trusted.  This patch changes
      the expression to "tagLen > size", which is a lot safer.
      a988b9b0
  3. 17 Jul, 2009 1 commit
  4. 15 Jul, 2009 3 commits
  5. 14 Jul, 2009 3 commits
  6. 06 Jul, 2009 6 commits
  7. 05 Jul, 2009 1 commit
  8. 30 Jun, 2009 3 commits
  9. 29 Jun, 2009 2 commits
  10. 26 Jun, 2009 1 commit
  11. 25 Jun, 2009 2 commits
  12. 24 Jun, 2009 1 commit
  13. 19 Jun, 2009 1 commit
    • Max Kellermann's avatar
      decoder_thread: reopen the stream after file_decode() has failed · 2536b0da
      Max Kellermann authored
      When decoding a local file, the decoder thread tries to run all
      matching decoders, until one succeeds.  Both file_decode() and
      stream_decode() can decode a stream, but MPD closes the stream before
      calling file_decode().  Problem is: when this decoder fails, and the
      next's stream_decode() method is invoked, the input_stream is still
      closed.  This patch reopens it.
      2536b0da
  14. 10 Jun, 2009 3 commits
  15. 09 Jun, 2009 2 commits
  16. 08 Jun, 2009 2 commits
  17. 04 Jun, 2009 3 commits
  18. 03 Jun, 2009 2 commits
  19. 02 Jun, 2009 1 commit