Bug in InnoDB;

file closing in extra/comp_err.c


BitKeeper/etc/ignore:
  added extra/mysqld_ername.h
extra/comp_err.c:
  Added proper closing of the file.
innobase/os/os0proc.c:
  Fixed small bug in innodb.
This commit is contained in:
unknown 2005-01-13 19:03:46 +02:00
commit 388cd3a7c4
3 changed files with 3 additions and 1 deletions

View file

@ -243,6 +243,7 @@ static int create_header_files(struct errors *error_head)
fprintf(er_definef, "#define ER_ERROR_MESSAGES %d\n", er_count);
my_fclose(er_definef, MYF(0));
my_fclose(sql_statef, MYF(0));
my_fclose(er_namef, MYF(0));
DBUG_RETURN(0);
}