diff options
author | unknown <anjuta@arthur.local> | 2005-01-13 19:03:46 +0200 |
---|---|---|
committer | unknown <anjuta@arthur.local> | 2005-01-13 19:03:46 +0200 |
commit | 388cd3a7c4b7b14a2529cc757f2e18a7c127997e (patch) | |
tree | ede3fbf72c3f49f91cba46a5312d11505b2aad38 /extra/comp_err.c | |
parent | d5202685048e4b89f08478de56ec2e367c4c751b (diff) | |
download | mariadb-git-388cd3a7c4b7b14a2529cc757f2e18a7c127997e.tar.gz |
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.
Diffstat (limited to 'extra/comp_err.c')
-rw-r--r-- | extra/comp_err.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/extra/comp_err.c b/extra/comp_err.c index 7f6b6a5996b..89fa958e6c1 100644 --- a/extra/comp_err.c +++ b/extra/comp_err.c @@ -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); } |