Skip to content

Commit fd45641

Browse files
authoredNov 23, 2024
Merge pull request owasp-modsecurity#3307 from gberkes/v3/cppcheck_v2_16_upgrade
Fix: Add false positive cppcheck-suppress for compatibility with upda…
2 parents 41fd21b + 5309194 commit fd45641

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/utils/system.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ bool isFile(const std::string& f) {
210210
return false;
211211
}
212212
fstat(fileno(fp), &fileInfo);
213-
if (!S_ISREG(fileInfo.st_mode)) {
213+
if (!S_ISREG(fileInfo.st_mode)) { // cppcheck-suppress syntaxError ; false positive
214214
fclose(fp);
215215
return false;
216216
}

0 commit comments

Comments
 (0)
Please sign in to comment.