Memory leak

This commit is contained in:
Alessandro Ferro 2023-04-29 15:41:09 +02:00
parent 6eaf0de2ee
commit 28f5b6db95
1 changed files with 1 additions and 0 deletions

View File

@ -204,6 +204,7 @@ bool analyze_directories(char* directory_to_analyze_1, char* directory_to_analyz
free(directory_to_analyze_1);
free(directory_to_analyze_2);
closedir(directory1);
closedir(directory2);
return false;
}
}