Suggested fix: close file.

This commit is contained in:
Alan Mishchenko 2018-10-16 16:47:56 +02:00
parent 1aed74edb0
commit c5b48bbf29
1 changed files with 2 additions and 1 deletions

View File

@ -176,7 +176,8 @@ void Cmd_RunStarter( char * pFileName, char * pBinary, char * pCommand, int nCor
ABC_FREE( Buffer );
fclose( pFile );
return;
}
}
fclose( pFileTemp );
}
}