-
Notifications
You must be signed in to change notification settings - Fork 13
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
Use after free in Constrint and Variable #152
Labels
bug
Something isn't working
Comments
Yes that's definitely a problem, but we should wait till #151 is resolved. |
The constraint case should be solved in #158 |
I think the same holds for Variables, no? |
Yes yes, that's what I'll work on next. Will close issue this only after. |
I think we're fully memory safe now :) Thanks again @Andful and feel free to reopen if you find any more issues. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When inspecting
Model
andConstraint
, I noticed thatModel::drop
frees every constraint, variable, butConstrain::name
andVariable::name
assume them not to be freed.This causes segmentation fault
The text was updated successfully, but these errors were encountered: