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

An impossibly large refactor #501

Draft
wants to merge 9 commits into
base: master
Choose a base branch
from

:%s/ *$//

4bccf80
Select commit
Loading
Failed to load commit list.
Draft

An impossibly large refactor #501

:%s/ *$//
4bccf80
Select commit
Loading
Failed to load commit list.
Codacy Production / Codacy Static Code Analysis required action Dec 6, 2024 in 0s

13 new issues (0 max.) of at least minor severity.

Annotations

Check warning on line 132 in .circleci/config.yml

See this annotation in the file changed.

@codacy-production codacy-production / Codacy Static Code Analysis

.circleci/config.yml#L132

Ensure run commands are not vulnerable to shell injection

Check warning on line 81 in scripts/docker-inner.sh

See this annotation in the file changed.

@codacy-production codacy-production / Codacy Static Code Analysis

scripts/docker-inner.sh#L81

Double quote to prevent globbing and word splitting.

Check warning on line 91 in scripts/docker-inner.sh

See this annotation in the file changed.

@codacy-production codacy-production / Codacy Static Code Analysis

scripts/docker-inner.sh#L91

Double quote to prevent globbing and word splitting.

Check warning on line 116 in scripts/docker-inner.sh

See this annotation in the file changed.

@codacy-production codacy-production / Codacy Static Code Analysis

scripts/docker-inner.sh#L116

Double quote to prevent globbing and word splitting.

Check notice on line 218 in src/filecache.c

See this annotation in the file changed.

@codacy-production codacy-production / Codacy Static Code Analysis

src/filecache.c#L218

Does not handle strings that are not \0-terminated; if given one it may perform an over-read (it could cause a crash if unprotected) (CWE-126).  

Check notice on line 293 in src/filecache.c

See this annotation in the file changed.

@codacy-production codacy-production / Codacy Static Code Analysis

src/filecache.c#L293

Does not handle strings that are not \0-terminated; if given one it may perform an over-read (it could cause a crash if unprotected) (CWE-126).  

Check notice on line 341 in src/filecache.c

See this annotation in the file changed.

@codacy-production codacy-production / Codacy Static Code Analysis

src/filecache.c#L341

Does not handle strings that are not \0-terminated; if given one it may perform an over-read (it could cause a crash if unprotected) (CWE-126).  

Check notice on line 389 in src/filecache.c

See this annotation in the file changed.

@codacy-production codacy-production / Codacy Static Code Analysis

src/filecache.c#L389

The scope of the variable 'funcname' can be reduced.

Check notice on line 517 in src/filecache.c

See this annotation in the file changed.

@codacy-production codacy-production / Codacy Static Code Analysis

src/filecache.c#L517

Easily used incorrectly; doesn't always \0-terminate or check for invalid pointers [MS-banned] (CWE-120).  

Check notice on line 519 in src/filecache.c

See this annotation in the file changed.

@codacy-production codacy-production / Codacy Static Code Analysis

src/filecache.c#L519

Easily used incorrectly; doesn't always \0-terminate or check for invalid pointers [MS-banned] (CWE-120).  

Check notice on line 671 in src/filecache.c

See this annotation in the file changed.

@codacy-production codacy-production / Codacy Static Code Analysis

src/filecache.c#L671

Easily used incorrectly; doesn't always \0-terminate or check for invalid pointers [MS-banned] (CWE-120).  

Check notice on line 715 in src/filecache.c

See this annotation in the file changed.

@codacy-production codacy-production / Codacy Static Code Analysis

src/filecache.c#L715

The scope of the variable 'funcname' can be reduced.

Check warning on line 296 in src/fusedav_config.c

See this annotation in the file changed.

@codacy-production codacy-production / Codacy Static Code Analysis

src/fusedav_config.c#L296

Assigning an integer to a pointer is not portable.