1. 14 Aug, 2009 4 commits
  2. 22 Jul, 2009 5 commits
  3. 19 Jul, 2009 2 commits
  4. 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
  5. 17 Jul, 2009 1 commit
  6. 15 Jul, 2009 3 commits
  7. 14 Jul, 2009 3 commits
  8. 06 Jul, 2009 6 commits
  9. 05 Jul, 2009 1 commit
  10. 30 Jun, 2009 3 commits
  11. 29 Jun, 2009 2 commits
  12. 26 Jun, 2009 1 commit
  13. 25 Jun, 2009 2 commits
  14. 24 Jun, 2009 1 commit
  15. 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
  16. 10 Jun, 2009 3 commits
  17. 09 Jun, 2009 1 commit