1. 29 Oct, 2019 8 commits
  2. 28 Oct, 2019 9 commits
  3. 24 Oct, 2019 3 commits
  4. 23 Oct, 2019 4 commits
  5. 22 Oct, 2019 2 commits
  6. 18 Oct, 2019 6 commits
  7. 16 Oct, 2019 1 commit
  8. 15 Oct, 2019 3 commits
  9. 14 Oct, 2019 2 commits
  10. 12 Oct, 2019 2 commits
    • Sydney Acksman's avatar
      Add length checks to ExtensionCollection · f50bc62f
      Sydney Acksman authored
      f50bc62f
    • Alan Wu's avatar
      Remove unused argument to avoid UB · c1ba7c64
      Alan Wu authored
      `OneOfDescriptor_each` is registered as a Ruby method which takes zero
      parameters, which means it should take one argument.
      
      When Ruby invokes `OneOfDescriptor_each`, it calls it with one parameter
      only, which is one less than what `OneOfDescriptor_each` takes before
      this commit. Calling a function with the wrong number of argument is
      technically undefined behavior.
      
      See also: §6.5.2.2, N1256
      c1ba7c64