Passing nullptr to functions with nullable parameter (*parent = nullptr
) crashes
#787
Labels
bug
This has been identified as a bug
crash
topic:gdextension
This relates to the new Godot 4 extension implementation
For this kind of interface:
Current
binding_generator.py
generates implementation like below:When you actually call this function with the default argument, it crashes at
parent->_owner
becauseparent
isnullptr
.If I change
parent->_owner
toparent ? parent->_owner : nullptr
, then it is working.I noticed this bug when I was using
TreeItem
, but I think this issue also affects other classes with similar interfaces too. I assume the script should generate different code for nullable parameters.EDIT: Theoretically, there might be some other cases where the function has a nullable pointer parameter without default value, but I'm not sure how many of godot-cpp's API matches that form.
Relevant location:
godot-cpp/binding_generator.py
Lines 1499 to 1501 in bffedfe
The text was updated successfully, but these errors were encountered: