| 408 | if(strcmp(entry->d_name,".")!=0 && strcmp(entry->d_name,"..")!=0) |
| 409 | { |
| 410 | struct stat buf_stat; |
| 411 | char *current_file=(char *)MALLOC(strlen(current_dir)+1+strlen(entry->d_name)+1); |
| 412 | strcpy(current_file, current_dir); |
| 413 | strcat(current_file, "/"); |
no outgoing calls
no test coverage detected