Skip to content

fixed a bug where some directories where not created successfuly #45

fixed a bug where some directories where not created successfuly

fixed a bug where some directories where not created successfuly #45

Triggered via pull request December 3, 2023 00:48
Status Success
Total duration 29s
Artifacts

c-lint.yml

on: pull_request
Fit to window
Zoom out
Zoom in

Annotations

4 warnings
/src/config.c:19:13 [cppcoreguidelines-avoid-non-const-global-variables]: src/config.c#L19
variable 'configEntries' is non-const and globally accessible, consider making it const
/src/move.c:30:9 [clang-analyzer-security.insecureAPI.DeprecatedOrUnsafeBufferHandling]: src/move.c#L30
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
/src/move.c:32:9 [clang-analyzer-security.insecureAPI.DeprecatedOrUnsafeBufferHandling]: src/move.c#L32
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
/src/move.c:61:5 [readability-redundant-control-flow]: src/move.c#L61
redundant return statement at the end of a function with a void return type