Closed
Description
The pointer s->v.AsyncFunctionDef.args->kw_defaults is explicitly checked for NULL:
Lines 2193 to 2195 in aaad2e8
However, a few lines later, the same pointer is passed unconditionally to the has_kwonlydefaults function:
Lines 2203 to 2204 in aaad2e8
Inside has_kwonlydefaults, the kw_defaults parameter is not checked for NULL before being dereferenced:
Lines 1783 to 1787 in aaad2e8