This commit is contained in:
ALEXks
2025-06-06 08:15:10 +03:00
parent 623898d913
commit 1895a4b02a

View File

@@ -444,9 +444,8 @@ static int dumpErrors(const vector<FileInfo>& listOfProject, const vector<string
if (errors[z] == "") if (errors[z] == "")
{ {
FILE* ferr = fopen(file.errPath.c_str(), "w"); FILE* ferr = fopen(file.errPath.c_str(), "w");
if (!ferr) if (ferr)
printInternalError(convertFileName(__FILE__).c_str(), __LINE__); fclose(ferr);
fclose(ferr);
++z; ++z;
continue; continue;
} }