1. 18 Dec, 2019 1 commit
  2. 17 Dec, 2019 13 commits
  3. 16 Dec, 2019 4 commits
  4. 13 Dec, 2019 1 commit
  5. 12 Dec, 2019 9 commits
  6. 11 Dec, 2019 5 commits
  7. 09 Dec, 2019 4 commits
  8. 06 Dec, 2019 1 commit
  9. 05 Dec, 2019 2 commits
    • Salvatore Sanfilippo's avatar
      Merge pull request #6645 from eliblight/fix-memcpy · 7e24e219
      Salvatore Sanfilippo authored
      Fix memcpy of id from key to be slightly safer.
      7e24e219
    • Eran Liberty's avatar
      - memcpy(&id,ri.key,ri.key_len); · 08c3fe80
      Eran Liberty authored
      +        memcpy(&id,ri.key,sizeof(id));
      
      The memcpy from the key to the id reliease on the fact that this key
      *should* be 8 bytes long as it was entered as such a few lines up the
      code.
      
      BUT if someone will change the code to the point this is no longer true,
      current code can trash the stack which makes debugging very hard
      while this fix will result in some garbage id, or even page fault.
      Both are preferable to stack mangaling.
      08c3fe80