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
commit 39c091bc9e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 162 additions and 71 deletions

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);