1. 18 Jan, 2020 1 commit
  2. 03 Aug, 2019 1 commit
  3. 05 Jul, 2019 1 commit
  4. 03 Jul, 2019 1 commit
  5. 17 Jun, 2019 1 commit
  6. 05 Jun, 2019 3 commits
  7. 07 May, 2019 1 commit
  8. 26 Apr, 2019 1 commit
  9. 25 Apr, 2019 1 commit
  10. 04 Apr, 2019 1 commit
  11. 03 Apr, 2019 2 commits
  12. 28 Dec, 2018 5 commits
  13. 14 Dec, 2018 1 commit
  14. 19 Nov, 2018 1 commit
    • Max Kellermann's avatar
      check.h: remove obsolete header · ce49d99c
      Max Kellermann authored
      Since we switched from autotools to Meson in commit
      94592c14, we don't need to include
      `config.h` early to properly enable large file support.  Meson passes
      the required macros on the compiler command line instead of defining
      them in `config.h`.
      
      This means we can include `config.h` at any time, whenever we want to
      check its macros, and there are no ordering constraints.
      ce49d99c
  15. 08 Nov, 2018 1 commit
    • Max Kellermann's avatar
      output/httpd: fix nullptr dereference crash bug · 583208db
      Max Kellermann authored
      When `metadata_sent` is `false`, the plugin assumes there is metadata
      which must be sent, even if no metadata page was passed to the plugin.
      Initializing it to `true` avoids dereferencing this `nullptr`.
      
      Fixes #412
      583208db
  16. 31 Oct, 2018 1 commit
  17. 30 Oct, 2018 1 commit
  18. 20 Aug, 2018 1 commit
  19. 07 Aug, 2018 1 commit
  20. 06 Jul, 2018 1 commit
    • Max Kellermann's avatar
      output/httpd: remove broken DLNA support code · 5f082a27
      Max Kellermann authored
      This code was added in 21851c06 but
      looks completely broken:
      
      - the status code is "206 OK" but "206" would be "Partial Content"
      
      - the "Content-Length" header has a bogus value
      
      - the "Content-RangeX" parameter has different bogus values (why
        "Content-RangeX" anyway and not "Content-Range"?)
      
      Apart from that, there are strange undocumented non-standard headers
      which are probably there to work around bugs/expectations in one
      broken proprietary client product.  But these days, MPD doesn't bend
      over to support broken clients.  So let's kill this code.
      
      Closes #304
      5f082a27
  21. 20 Dec, 2017 1 commit
  22. 19 Dec, 2017 1 commit
  23. 14 Nov, 2017 1 commit
    • Max Kellermann's avatar
      output/httpd: flush encoder after tag · 014f8cd6
      Max Kellermann authored
      Without the flush, ReadPage() may not return any data, or not all
      data.  This may result in incomplete ddata the new "header" page,
      corrupting streams with some encoders such as Vorbis.
      
      Fixes #145
      014f8cd6
  24. 10 Nov, 2017 8 commits
  25. 08 Sep, 2017 1 commit
    • Max Kellermann's avatar
      output/Interface: allow Pause() to throw exception · d0f6131b
      Max Kellermann authored
      Coverity discovered that the Pulse plugin could throw exceptions from
      Pause(), but that method was marked "noexcept" because its caller was
      not designed to catch exceptions.  So instead of avoiding exceptions
      (by catching and logging them in each and every implementation), let's
      allow them, and do the catch/log game in the MPD core.
      d0f6131b
  26. 11 Aug, 2017 1 commit