1. 28 2月, 2020 1 次提交
  2. 05 12月, 2019 1 次提交
    • 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
  3. 23 7月, 2019 4 次提交
  4. 22 7月, 2019 3 次提交
  5. 18 7月, 2019 1 次提交
  6. 17 7月, 2019 1 次提交
  7. 11 7月, 2019 1 次提交
  8. 05 7月, 2019 1 次提交
  9. 04 7月, 2019 2 次提交