- missing 'fclose(fd)' added in function parse_bochsrc()

This commit is contained in:
Volker Ruppert 2002-07-15 20:12:14 +00:00
parent 43f9f8287b
commit e0b09bee95
1 changed files with 3 additions and 2 deletions

View File

@ -1,8 +1,8 @@
///////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////
// $Id: main.cc,v 1.105 2002-07-14 13:22:38 vruppert Exp $ // $Id: main.cc,v 1.106 2002-07-15 20:12:14 vruppert Exp $
///////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////
// //
// Copyright (C) 2001 MandrakeSoft S.A. // Copyright (C) 2002 MandrakeSoft S.A.
// //
// MandrakeSoft S.A. // MandrakeSoft S.A.
// 43, rue d'Aboukir // 43, rue d'Aboukir
@ -1427,6 +1427,7 @@ parse_bochsrc(char *rcfile)
parse_line_unformatted(rcfile, line); parse_line_unformatted(rcfile, line);
} }
} while (!feof(fd)); } while (!feof(fd));
fclose(fd);
return 0; return 0;
} }