1. 09 Aug, 2021 4 commits
  2. 06 Aug, 2021 1 commit
  3. 05 Aug, 2021 1 commit
  4. 03 Aug, 2021 4 commits
  5. 02 Aug, 2021 13 commits
  6. 30 Jul, 2021 1 commit
  7. 29 Jul, 2021 2 commits
  8. 28 Jul, 2021 9 commits
  9. 27 Jul, 2021 4 commits
  10. 26 Jul, 2021 1 commit
    • David Horstmann's avatar
      fix(fdt): fix OOB write in uuid parsing function · d0d64245
      David Horstmann authored
      
      
      The function read_uuid() zeroes the UUID destination buffer
      on error. However, it mistakenly uses the dest pointer
      that has been incremented many times during the parsing,
      leading to an out-of-bounds write.
      
      To fix this, retain a pointer to the start of the buffer,
      and use this when clearing it instead.
      Signed-off-by: default avatarDavid Horstmann <david.horstmann@arm.com>
      Change-Id: Iee8857be5d3f383ca2eab86cde99a43bf606f306
      d0d64245