1
0
Fork 0
mirror of https://github.com/reactos/reactos.git synced 2025-05-17 16:27:00 +00:00
Fix resource leak


svn path=/trunk/; revision=54030
This commit is contained in:
Pierre Schweitzer 2011-10-06 20:13:54 +00:00
parent d2a93ea6d9
commit cc5d780806

View file

@ -149,6 +149,7 @@ int _tmain (int argc, TCHAR *argv[])
if ((fp2 = fopen(File2, "r")) == NULL) if ((fp2 = fopen(File2, "r")) == NULL)
{ {
_tprintf(_T("Can't find/open file: %s\n"), File2); _tprintf(_T("Can't find/open file: %s\n"), File2);
fclose(fp1);
return EXIT_FAILURE; return EXIT_FAILURE;
} }