1. 18 12月, 2019 1 次提交
  2. 17 12月, 2019 13 次提交
  3. 16 12月, 2019 4 次提交
  4. 14 12月, 2019 1 次提交
  5. 13 12月, 2019 2 次提交
  6. 12 12月, 2019 7 次提交
  7. 11 12月, 2019 5 次提交
  8. 10 12月, 2019 1 次提交
  9. 09 12月, 2019 3 次提交
  10. 07 12月, 2019 1 次提交
  11. 05 12月, 2019 2 次提交
    • S
      Merge pull request #6645 from eliblight/fix-memcpy · 7e24e219
      Salvatore Sanfilippo 提交于
      Fix memcpy of id from key to be slightly safer.
      7e24e219
    • E
      - memcpy(&id,ri.key,ri.key_len); · 08c3fe80
      Eran Liberty 提交于
      +        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