diff options
author | unknown <serg@serg.mysql.com> | 2002-02-20 13:06:54 +0000 |
---|---|---|
committer | unknown <serg@serg.mysql.com> | 2002-02-20 13:06:54 +0000 |
commit | 6789dcc60429974f1bb892c5079c468c5d765d6c (patch) | |
tree | d3aca38d2f5d8782ebfd126bfe07554560b3da68 /sql/table.cc | |
parent | 52c955363a053ebf5800e5b6eedb34e697fc400e (diff) | |
download | mariadb-git-6789dcc60429974f1bb892c5079c468c5d765d6c.tar.gz |
memory leak with broken tables fixed
Docs/manual.texi:
news updated
Diffstat (limited to 'sql/table.cc')
-rw-r--r-- | sql/table.cc | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sql/table.cc b/sql/table.cc index 1ab6c50add9..ce7d185a7a1 100644 --- a/sql/table.cc +++ b/sql/table.cc @@ -600,7 +600,6 @@ int closefrm(register TABLE *table) } delete table->file; table->file=0; /* For easyer errorchecking */ - hash_free(&table->name_hash); free_root(&table->mem_root,MYF(0)); DBUG_RETURN(error); } |