Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2015-01-01 | Copyright year 2015 | Max Kellermann | 6 | -6/+6 | |
2014-09-04 | protocol/ArgParser: fix integer overflow in parse_range() | Max Kellermann | 1 | -2/+2 | |
Casting std::numeric_limits<unsigned>::max() to "long" leads to an overflow if sizeof(unsigned)==sizeof(long), and the result will be -1. This happens on some 32 bit architectures, for example ARM and WIN32. Workaround: use std::numeric_limits<int>::max(), which is the largest signed integer. Since sizeof(long)>=sizeof(int), this will never overflow. Fixes Mantis ticket 0004080. | |||||
2014-08-29 | ArgParser: allow fractional seconds in ParseCommandArg(SongTime) | Max Kellermann | 1 | -4/+4 | |
2014-08-28 | Playlist: use std::chrono::duration for Seek*() | Max Kellermann | 2 | -0/+31 | |
2014-01-24 | Client*: move to client/ | Max Kellermann | 1 | -1/+1 | |
2014-01-13 | copyright year 2014 | Max Kellermann | 6 | -6/+6 | |
2013-10-30 | *: update copyright year to 2013 | Max Kellermann | 2 | -2/+2 | |
2013-10-28 | *: use nullptr instead of NULL | Max Kellermann | 1 | -2/+2 | |
2013-10-19 | *: use references instead of pointers | Max Kellermann | 4 | -19/+18 | |
2013-10-17 | *: use std::numeric_limits | Max Kellermann | 1 | -13/+10 | |
2013-10-15 | gcc.h: rename to Compiler.h | Max Kellermann | 1 | -1/+1 | |
2013-10-15 | gcc.h: major update | Max Kellermann | 1 | -1/+1 | |
Copy the according file from another project (i.e. XCSoar). This will allow copying more code more easily. | |||||
2013-09-04 | util/Error: new error passing library | Max Kellermann | 3 | -12/+28 | |
Replaces GLib's GError. | |||||
2013-08-10 | ack.h: move to protocol/ | Max Kellermann | 2 | -1/+54 | |
2013-07-30 | include cleanup | Max Kellermann | 1 | -1/+0 | |
2013-02-19 | command: allow to omit END in ranges (START:END) | Jörg Thalheim | 1 | -1/+1 | |
If END is omitted, mpd should use the highest possible value instead of raising an error. This partially reverts 52e9cab1c1743f64a7 | |||||
2013-01-03 | Client: rename the struct client to class Client | Max Kellermann | 4 | -20/+20 | |
2013-01-03 | client: convert to C++ | Max Kellermann | 4 | -12/+12 | |
2012-08-02 | gcc.h: re-add gcc_const and gcc_pure | Max Kellermann | 1 | -3/+2 | |
Remove GLib dependency from some headers. | |||||
2012-02-14 | command: move code to protocol/argparser.c | Max Kellermann | 2 | -0/+240 | |
2012-02-14 | command: move functions to protocol/result.c | Max Kellermann | 2 | -0/+101 | |