cpython icon indicating copy to clipboard operation
cpython copied to clipboard

`ga_getitem` can fail if `Py_GenericAlias` returns `NULL`

Open sobolevn opened this issue 7 months ago • 0 comments

Bug report

This code is problematic: https://github.com/python/cpython/blob/dc03ce797ae8786a9711e6ee5dcaadde02c55864/Objects/genericaliasobject.c#L565-L569

Why? Py_GenericAlias can return NULL in different cases: https://github.com/python/cpython/blob/dc03ce797ae8786a9711e6ee5dcaadde02c55864/Objects/genericaliasobject.c#L995-L999

So, we need to check for NULL.

Linked PRs

  • gh-121661
  • gh-121761
  • gh-121762

sobolevn avatar Jul 13 '24 08:07 sobolevn