1. 28 Sep, 2018 2 commits
  2. 26 Sep, 2018 2 commits
  3. 25 Sep, 2018 2 commits
  4. 24 Sep, 2018 1 commit
  5. 22 Sep, 2018 1 commit
  6. 21 Sep, 2018 1 commit
  7. 19 Sep, 2018 2 commits
  8. 18 Sep, 2018 6 commits
  9. 17 Sep, 2018 4 commits
  10. 12 Sep, 2018 1 commit
    • path validation: `char` is not signed by default. · 44291868
      ARM treats its `char` type as `unsigned type` by default; as a result,
      testing a `char` value as being `< 0` is always false.  This is a
      warning on ARM, which is promoted to an error given our use of
      `-Werror`.
      
      Per ISO 9899:199, section "6.2.5 Types":
      
      > The three types char, signed char, and unsigned char are collectively
      > called the character types. The implementation shall define char to
      > have the same range, representation, and behavior as either signed
      > char or unsigned char.
      >
      ...
      
      > Irrespective of the choice made, char is a separate type from the other
      > two and is not compatible with either.
      Edward Thomson committed
  11. 11 Sep, 2018 1 commit
  12. 09 Sep, 2018 1 commit
  13. 08 Sep, 2018 1 commit
  14. 07 Sep, 2018 2 commits
  15. 06 Sep, 2018 13 commits