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
There is a calloc warning/error returned from line 1487 in src/jtag/drivers/ulink.c:
calloc
1487
src/jtag/drivers/ulink.c
tdo_buffer_start = calloc(sizeof(uint8_t), scan_size_bytes);
The error causes a warning message but this can and is treated as an error, as follows:
Error: 'calloc' sizes specified with 'sizeof' in the earlier argument and not in the later argument`
A suggested fix is:
tdo_buffer_start = calloc(scan_size_bytes, sizeof(uint8_t));
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
There is a
calloc
warning/error returned from line1487
insrc/jtag/drivers/ulink.c
:The error causes a warning message but this can and is treated as an error, as follows:
A suggested fix is:
The text was updated successfully, but these errors were encountered: