Merge pull request #4397 from xiaoge1001/free

Fix several locations with potential memory leak
This commit is contained in:
Yann Collet
2025-06-09 10:06:36 -07:00
committed by GitHub
6 changed files with 162 additions and 71 deletions
+1
View File
@@ -928,6 +928,7 @@ static int UTIL_prepareFileList(const char* dirName,
hFile=FindFirstFileA(path, &cFile);
if (hFile == INVALID_HANDLE_VALUE) {
UTIL_DISPLAYLEVEL(1, "Cannot open directory '%s'\n", dirName);
free(path);
return 0;
}
free(path);