1. 04 Feb, 2019 3 commits
  2. 03 Jan, 2019 3 commits
  3. 01 Dec, 2018 1 commit
  4. 20 Nov, 2018 1 commit
  5. 16 Nov, 2018 2 commits
  6. 13 Nov, 2018 1 commit
  7. 11 Nov, 2018 3 commits
  8. 09 Nov, 2018 3 commits
  9. 03 Nov, 2018 1 commit
  10. 01 Nov, 2018 1 commit
  11. 24 Oct, 2018 4 commits
  12. 14 Oct, 2018 1 commit
  13. 11 Oct, 2018 1 commit
  14. 10 Oct, 2018 1 commit
  15. 02 Oct, 2018 1 commit
  16. 27 Sep, 2018 1 commit
  17. 25 Sep, 2018 1 commit
    • Fix potential crash when calling an overloaded function (#1327) · e7761e33
      * Fix potential crash when calling an overloaded function
      
      The crash would occur if:
      - dispatcher() uses two-pass logic (because the target is overloaded and some arguments support conversions)
      - the first pass (with conversions disabled) doesn't find any matching overload
      - the second pass does find a matching overload, but its return value can't be converted to Python
      
      The code for formatting the error message assumed `it` still pointed to the selected overload,
      but during the second-pass loop `it` was nullptr. Fix by setting `it` correctly if a second-pass
      call returns a nullptr `handle`. Add a new test that segfaults without this fix.
      
      * Make overload iteration const-correct so we don't have to iterate again on second-pass error
      
      * Change test_error_after_conversions dependencies to local classes/variables
      oremanj committed
  18. 14 Sep, 2018 2 commits
  19. 11 Sep, 2018 8 commits
  20. 08 Sep, 2018 1 commit