1. 10 Dec, 2018 2 commits
  2. 30 Nov, 2018 1 commit
  3. 29 Nov, 2018 1 commit
  4. 28 Nov, 2018 1 commit
  5. 04 Sep, 2018 1 commit
  6. 25 Jul, 2018 1 commit
  7. 24 Jul, 2018 1 commit
  8. 08 Jun, 2017 1 commit
  9. 31 May, 2017 2 commits
  10. 30 May, 2017 2 commits
  11. 29 May, 2017 5 commits
  12. 25 Apr, 2017 1 commit
  13. 20 Apr, 2017 13 commits
  14. 19 Apr, 2017 1 commit
  15. 14 Apr, 2017 1 commit
    • Greg Dennis's avatar
      Initialize safe_year in time64.c · 415c35a5
      Greg Dennis authored
      Clang fails with stricter compilation options, because it thinks safe_year may be uninitialized at the return statement. The logic prevents it from being uninitialized, but probably worth the initialization to avoid the compiler error. The rest of libimobiledevice compiles successfully under the same options.
      415c35a5
  16. 06 Apr, 2017 1 commit
  17. 02 Apr, 2017 1 commit
  18. 29 Mar, 2017 2 commits
  19. 28 Mar, 2017 1 commit
  20. 26 Mar, 2017 1 commit
    • Nikias Bassen's avatar
      bplist: Make sure sanity checks work on 32bit platforms · dccd9290
      Nikias Bassen authored
      Because on 32-bit platforms 32-bit pointers and 64-bit sizes have been
      used for the sanity checks of the offset table and object references,
      the range checks would fail in certain interger-overflowish situations,
      causing heap buffer overflows or other unwanted behavior.
      Fixed by wideing the operands in question to 64-bit.
      dccd9290