- 27 Dec, 2017 1 commit
-
-
Max Kellermann authored
-
- 22 Dec, 2017 2 commits
-
-
Max Kellermann authored
-
Max Kellermann authored
Fixes thread sanitizer warnings.
-
- 21 Dec, 2017 1 commit
-
-
Max Kellermann authored
If a directory is a mount point, omit the "directory: " as well. This bug is years old, but has become more visible now that mount points are persistent in the state file.
-
- 19 Dec, 2017 1 commit
-
-
Max Kellermann authored
-
- 18 Dec, 2017 4 commits
-
-
FlashSystems authored
If `SimpleDatabase::Visit` is called on a database that contains a mounted directry the URIs of the elements passed to the callbacks are not prefixed by the mountpoint path. This leads to lsinfo and add not working because they use the wrong URI. This pull request is using the `WalkMount` helper function to create prefixed versions of `VisitDirectory`, `VisitSong` and `VisitPlaylist` to add the correct prefix to the parameters of the callback functions.
-
Max Kellermann authored
-
Max Kellermann authored
Closes #172
-
Max Kellermann authored
-
- 12 Dec, 2017 1 commit
-
-
Max Kellermann authored
Only _WIN32 is defined by the compiler, and WIN32 is not standardized and may be missing. Closes #169
-
- 03 Dec, 2017 1 commit
-
-
FlashSystems authored
assignment of `mnt->mounted_database` in `SimpleDatabase::Mount`.
-
- 27 Nov, 2017 1 commit
-
-
FlashSystems authored
Signed-off-by:
FlashSystems <developer@flashsystems.de>
-
- 26 Nov, 2017 1 commit
-
-
Max Kellermann authored
-
- 12 Nov, 2017 2 commits
-
-
Max Kellermann authored
-
Max Kellermann authored
-
- 10 Nov, 2017 5 commits
-
-
Max Kellermann authored
-
Max Kellermann authored
-
Max Kellermann authored
-
Max Kellermann authored
-
Max Kellermann authored
-
- 20 Sep, 2017 1 commit
-
-
Max Kellermann authored
-
- 12 Sep, 2017 1 commit
-
-
Max Kellermann authored
This is not necessary, because a strlen() on a literal gets optimized away by the compiler.
-
- 09 Sep, 2017 1 commit
-
-
Max Kellermann authored
-
- 29 Aug, 2017 1 commit
-
-
Max Kellermann authored
-
- 25 Aug, 2017 1 commit
-
-
Max Kellermann authored
We can do CURL requests asynchronously, and we don't need a synchronous WorkQueue thread for that. This allows parallelizing lookups and allows immediate cancellation.
-
- 24 Aug, 2017 2 commits
-
-
Max Kellermann authored
Allows database plugins to use the EventThread, e.g. for CURL integration.
-
Max Kellermann authored
-
- 18 Aug, 2017 3 commits
-
-
Max Kellermann authored
Allows eliminating lots of complexity and workarounds for bogus assertion failures.
-
Max Kellermann authored
-
Max Kellermann authored
-
- 11 Aug, 2017 1 commit
-
-
Max Kellermann authored
-
- 10 Aug, 2017 1 commit
-
-
Max Kellermann authored
-
- 05 Jul, 2017 1 commit
-
-
Max Kellermann authored
-
- 04 Jun, 2017 1 commit
-
-
Max Kellermann authored
-
- 03 Jun, 2017 1 commit
-
-
Max Kellermann authored
This commit is similar to 788e3b31, and removes more "pure" attributes which were placed on functions that could throw exceptions, which is illegal according to clang's understanding of the attribute (but not according to GCC's). GitHub issue #58 was most likely about StorageDirectoryReader::GetInfo() and Storage::GetInfo(), which still had "pure" attributes. Closes #58
-
- 16 May, 2017 1 commit
-
-
Max Kellermann authored
We can remove those C++11 and C++14 kludges because we require GCC 4.9 now.
-
- 15 May, 2017 1 commit
-
-
Max Kellermann authored
See commit 788e3b31 for an explanation.
-
- 08 May, 2017 2 commits
-
-
Max Kellermann authored
The "pure" and "const" attributes are not so well-defined, and a recent clang version implements an optimization which pushes the definition's boundary beyond what I believed it was. clang now assumes that functions declared "pure" cannot throw exceptions, even if they lack the "noexcept" specification. When compiled with this new clang version, MPD will crash randomly if an exception happens to get thrown by such as "pure" function (https://github.com/MusicPlayerDaemon/MPD/issues/41). This commit removes all such misplaced "pure" and "const" attributes, closing #41.
-
Max Kellermann authored
This eliminates some overhead, because the compiler doesn't need to consider these functions throwing.
-
- 21 Apr, 2017 1 commit
-
-
Bart Nagel authored
See https://picard.musicbrainz.org/docs/mappings/ This tag is useful when the user would like all releases of the same album to be sorted next to each other.
-