Fixed retrying downloads #180
Annotations
1 error and 10 warnings
src/make.c:159:13 [clang-diagnostic-error]:
src/make.c#L159
expected statement
|
src/make.c:26:5 [readability-function-cognitive-complexity]:
src/make.c#L26
function 'make' has cognitive complexity of 72 (threshold 25)
|
src/make.c:30:11 [cppcoreguidelines-init-variables]:
src/make.c#L30
variable 'cmd_params' is not initialized
|
src/make.c:98:23 [cppcoreguidelines-init-variables]:
src/make.c#L98
variable 'ptr' is not initialized
|
src/make.c:108:21 [readability-else-after-return]:
src/make.c#L108
do not use 'else' after 'return'
|
src/make.c:124:21 [readability-else-after-return]:
src/make.c#L124
do not use 'else' after 'return'
|
src/make.c:146:21 [readability-else-after-return]:
src/make.c#L146
do not use 'else' after 'return'
|
test/test.c:20:5 [clang-analyzer-security.insecureAPI.DeprecatedOrUnsafeBufferHandling]:
test/test.c#L20
Call to function 'sprintf' is insecure as it does not provide bounding of the memory buffer or security checks introduced in the C11 standard. Replace with analogous functions that support length arguments or provides boundary checks such as 'sprintf_s' in case of C11
|
test/test.c:31:5 [readability-redundant-control-flow]:
test/test.c#L31
redundant return statement at the end of a function with a void return type
|
test/test.c:44:5 [clang-analyzer-security.insecureAPI.DeprecatedOrUnsafeBufferHandling]:
test/test.c#L44
Call to function 'sprintf' is insecure as it does not provide bounding of the memory buffer or security checks introduced in the C11 standard. Replace with analogous functions that support length arguments or provides boundary checks such as 'sprintf_s' in case of C11
|
test/test.c:63:9 [clang-analyzer-security.insecureAPI.DeprecatedOrUnsafeBufferHandling]:
test/test.c#L63
Call to function 'sprintf' is insecure as it does not provide bounding of the memory buffer or security checks introduced in the C11 standard. Replace with analogous functions that support length arguments or provides boundary checks such as 'sprintf_s' in case of C11
|