diff options
author | monty@tik.mysql.fi <> | 2002-03-05 17:38:16 +0200 |
---|---|---|
committer | monty@tik.mysql.fi <> | 2002-03-05 17:38:16 +0200 |
commit | c1ab560c3dcc9b7060d90baffb4d6551203d2cc0 (patch) | |
tree | 4c30c14208ff66b6c3278246e096cfb9df057c36 /sql/sql_base.cc | |
parent | cde0896521c03deacf68cde933d2322ff886fc87 (diff) | |
download | mariadb-git-c1ab560c3dcc9b7060d90baffb4d6551203d2cc0.tar.gz |
Corrected fix for not freed memory when using corrupted tables
Diffstat (limited to 'sql/sql_base.cc')
-rw-r--r-- | sql/sql_base.cc | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sql/sql_base.cc b/sql/sql_base.cc index 1c281163b5a..656758623bc 100644 --- a/sql/sql_base.cc +++ b/sql/sql_base.cc @@ -277,7 +277,6 @@ void intern_close_table(TABLE *table) free_io_cache(table); if (table->file) VOID(closefrm(table)); // close file - hash_free(&table->name_hash); } |