1. 01 Jan, 2017 1 commit
  2. 27 Dec, 2016 2 commits
  3. 21 Dec, 2016 3 commits
  4. 14 Dec, 2016 4 commits
  5. 28 Nov, 2016 1 commit
    • Nikias Bassen's avatar
      xplist: Fix parsing of adjacent nodes without whitespace between them · 5e8fb617
      Nikias Bassen authored
      The context position counter was increased after encountering a closing
      node, e.g. '</dict>' or after a closing '</key>' node. When a node followed
      it directly without any whitespace inbetween, e.g. </dict><key>, parsing
      would fail since the parser would look at 'key>' instead of '<key>' for the
      next node to be parsed.
      5e8fb617
  6. 27 Nov, 2016 1 commit
  7. 18 Nov, 2016 4 commits
  8. 13 Nov, 2016 5 commits
  9. 10 Nov, 2016 8 commits
  10. 09 Nov, 2016 1 commit
  11. 31 Oct, 2016 4 commits
  12. 24 Oct, 2016 1 commit
  13. 22 Oct, 2016 1 commit
  14. 19 Sep, 2016 2 commits
  15. 18 Sep, 2016 1 commit
    • Nikias Bassen's avatar
      Change internal storage of PLIST_DATE values from struct timeval to double · 912cb459
      Nikias Bassen authored
      This removes the timeval union member from the plist_data_t structure.
      Since struct timeval is 2x64bit on 64bit platforms this member unnecessarily
      grew the union size to 16 bytes while a size of 8 bytes is sufficient.
      Also, on 32bit platforms struct timeval is only 2x32bit of size, limiting the
      range of possible time values. In addition the binary property list format
      also stores PLIST_DATE nodes as double.
      912cb459
  16. 08 Sep, 2016 1 commit