Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Passing nullptr to functions with nullable parameter (*parent = nullptr) crashes #787

Closed
saki7 opened this issue Jul 11, 2022 · 1 comment · Fixed by #864
Closed

Passing nullptr to functions with nullable parameter (*parent = nullptr) crashes #787

saki7 opened this issue Jul 11, 2022 · 1 comment · Fixed by #864
Labels
bug This has been identified as a bug crash topic:gdextension This relates to the new Godot 4 extension implementation

Comments

@saki7
Copy link
Contributor

saki7 commented Jul 11, 2022

For this kind of interface:

TreeItem *create_item(TreeItem *parent = nullptr, int32_t idx = -1);

Current binding_generator.py generates implementation like below:

TreeItem *Tree::create_item(TreeItem *parent, int32_t idx) {
    /* ... snip ... */
    return internal::_call_native_mb_ret_obj<TreeItem>(___method_bind, _owner, parent->_owner, &idx_encoded);
}

When you actually call this function with the default argument, it crashes at parent->_owner because parent is nullptr.
If I change parent->_owner to parent ? 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

elif is_engine_class(type_name):
name = f"{name}->_owner"
else:

@Zylann
Copy link
Collaborator

Zylann commented Jul 13, 2022

Have bindings generate obj ? obj->_owner : nullptr is the safest solution I can think of, can't avoid the duality wrapper/real object. The only way to allow asserting in debug build (for example) would require the Godot API to tell wether or not an argument is nullable (but they often are).
Might need a look at APIs with Ref<T> arguments as well, to see if they handle it? (there are a lot more)

@Calinou Calinou added crash bug This has been identified as a bug topic:gdextension This relates to the new Godot 4 extension implementation labels Jul 13, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug This has been identified as a bug crash topic:gdextension This relates to the new Godot 4 extension implementation
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants