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
LavaInitTool sometimes initialize variables that are already initialized and forces manual patches:
For example:
int coefi, cindex = cinfo->cur_comp_info[ci]->component_index;
becomes
int coefi, cindex = cinfo->cur_comp_info[ci]->component_index={0};
This happens infrequently enough that we can just manually fix these up for now, but it would be nice to fix.
The text was updated successfully, but these errors were encountered:
Merged in develop2 (pull request panda-re#13)
583373f
Lava 2
Another similar failure:
size_t keycc = 0, oldcc, keyalloc = 0
size_t keycc = 0, oldcc, keyalloc = 0={0};
Sorry, something went wrong.
No branches or pull requests
LavaInitTool sometimes initialize variables that are already initialized and forces manual patches:
For example:
becomes
This happens infrequently enough that we can just manually fix these up for now, but it would be nice to fix.
The text was updated successfully, but these errors were encountered: