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
In tools_misc.c around line 2884 there is a for loop that uses uninitialized variable n as counter.
I simply put 'int n;' before the loop and it compiled fine. I guess you could have 'for (int n = 0; n < 6; n++)' instead to limit the scope..
Otherwise, excellent work Sir!!!
The text was updated successfully, but these errors were encountered:
Thanks for reporting that issue! The 'int n;' was placed inside a #ifdef condition by mistake. Fixed it by moving it out of the #ifdef block.
Sorry, something went wrong.
No branches or pull requests
In tools_misc.c around line 2884 there is a for loop that uses uninitialized variable n as counter.
I simply put 'int n;' before the loop and it compiled fine. I guess you could have 'for (int n = 0; n < 6; n++)' instead to limit the scope..
Otherwise, excellent work Sir!!!
The text was updated successfully, but these errors were encountered: