mirror of
https://github.com/gflags/gflags.git
synced 2025-04-05 05:25:04 +00:00
fix: Static code analyzer error regarding strncmp with empty kRootDir string
This commit is contained in:
parent
4a694e8736
commit
74603f5ed3
1 changed files with 1 additions and 1 deletions
|
@ -591,7 +591,7 @@ const char* CommandLineFlag::CleanFileName() const {
|
|||
const char* clean_name = filename() + strlen(filename()) - 1;
|
||||
while ( clean_name > filename() ) {
|
||||
if (*clean_name == PATH_SEPARATOR) {
|
||||
if (strncmp(clean_name, kRootDir, sizeof(kRootDir)-1) == 0) {
|
||||
if (sizeof(kRootDir) > 1 && strncmp(clean_name, kRootDir, sizeof(kRootDir)-1) == 0) {
|
||||
clean_name += sizeof(kRootDir)-1; // past root-dir
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue