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

Incorrect behavior in lavaInitTool #13

Open
AndrewFasano opened this issue Jan 2, 2019 · 1 comment
Open

Incorrect behavior in lavaInitTool #13

AndrewFasano opened this issue Jan 2, 2019 · 1 comment
Labels
bug Something isn't working good first issue Good for newcomers

Comments

@AndrewFasano
Copy link
Member

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.

@AndrewFasano AndrewFasano added bug Something isn't working good first issue Good for newcomers labels Jan 2, 2019
chubbymaggie pushed a commit to chubbymaggie/lava that referenced this issue Jan 3, 2019
@AndrewFasano
Copy link
Member Author

Another similar failure:

size_t keycc = 0, oldcc, keyalloc = 0

becomes

size_t keycc = 0, oldcc, keyalloc = 0={0};

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working good first issue Good for newcomers
Projects
None yet
Development

No branches or pull requests

1 participant