1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00

0029252: Coding rules - eliminate GCC compiler warnings -Wformat-overflow

OSD_DirectoryIterator and OSD_FileIterator now uses TCollection_AsciiString instead of unsafe sprintf.
This commit is contained in:
kgv 2017-10-21 21:17:14 +03:00 committed by bugmaster
parent cf0786daf1
commit 65ada1f174
2 changed files with 6 additions and 18 deletions

View File

@ -100,13 +100,11 @@ static int strcmp_joker(const char *Mask,const char *Name)
void OSD_DirectoryIterator::Next(){
int again = 1;
struct stat stat_buf;
char full_name[255];
myFlag = false; // Initialize to nothing found
do{
myEntry = readdir((DIR *)myDescr);
if (!myEntry){ // No file found
myEntry = NULL; // Keep pointer clean
myFlag = Standard_False; // No more files/directory
@ -119,10 +117,8 @@ char full_name[255];
// if (!strcmp(entry->d_name,"..")) continue; 2 directories.
// Is it a directory ?
sprintf(full_name,"%s/%s",myPlace.ToCString(),
((struct dirent *)myEntry)->d_name); // LD debug
stat(full_name, &stat_buf);
const TCollection_AsciiString aFullName = myPlace + "/" + ((struct dirent* )myEntry)->d_name;
stat(aFullName.ToCString(), &stat_buf);
if (S_ISDIR(stat_buf.st_mode)) // Ensure me it's not a file
if (strcmp_joker(myMask.ToCString(), ((struct dirent *)myEntry)->d_name)){
// Does it follow mask ?

View File

@ -176,13 +176,11 @@ static int strcmp_joker(char *fileMask,char *fileName)
void OSD_FileIterator::Next(){
int again = 1;
struct stat stat_buf;
char full_name[255];
myFlag = false; // Initialize to nothing found
do {
myEntry = readdir((DIR *)myDescr);
if (!myEntry){ // No file found
myEntry = NULL; // Keep pointer clean
myFlag = Standard_False; // No more files/directory
@ -195,14 +193,8 @@ char full_name[255];
if (!strcmp(((struct dirent *)myEntry)->d_name,"..")) continue;
// Is it a file ?
sprintf(full_name,"%s/%s",myPlace.ToCString(),
((struct dirent *)myEntry)->d_name); // LD debug
#ifdef OCCT_DEBUG
cout << "Place : " << myPlace << endl;
cout << "FName : " << full_name << endl;
#endif
stat(full_name, &stat_buf);
const TCollection_AsciiString aFullName = myPlace + "/" + ((struct dirent* )myEntry)->d_name;
stat(aFullName.ToCString(), &stat_buf);
if (S_ISREG(stat_buf.st_mode)) // LD : Ensure me it's a regular file
if (strcmp_joker(myMask.ToCString(), ((struct dirent *)myEntry)->d_name)){
// Does it follow mask ?