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
src\glsl\opt_vector_splitting.cpp : 274 loop_state* ls = analyze_loop_variables(instructions);
object "ls" is created and never deleted
The text was updated successfully, but these errors were encountered:
Thanks for posting this!!
I came across this leak as well, but wasn't finding it easy to track down. I was about to give up when I came across your post!
For others who are interested, this leak can be fixed by adding:
delete loopstate;
before the return statement in the ir_vector_reference_visitor::get_split_list() function.
ir_vector_reference_visitor::get_split_list()
I can make a pull request out of this if it would be helpful, but the change is trivial.
Thanks...
...Bill
Sorry, something went wrong.
No branches or pull requests
src\glsl\opt_vector_splitting.cpp : 274
loop_state* ls = analyze_loop_variables(instructions);
object "ls" is created and never deleted
The text was updated successfully, but these errors were encountered: