We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I think the current implementation of string conversion to native has a double free bug for methods like: https://docs.gtk.org/gtk4/method.StringList.take.html
The StringList takes ownership and is responsible for freeing. Currently we just generate an owned handle which would be freed by us and by GTK.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
I think the current implementation of string conversion to native has a double free bug for methods like: https://docs.gtk.org/gtk4/method.StringList.take.html
The StringList takes ownership and is responsible for freeing. Currently we just generate an owned handle which would be freed by us and by GTK.
The text was updated successfully, but these errors were encountered: