summaryrefslogtreecommitdiff
path: root/sql/ha_myisam.h
diff options
context:
space:
mode:
authorserg@serg.mylan <>2004-06-24 19:46:50 +0200
committerserg@serg.mylan <>2004-06-24 19:46:50 +0200
commit1ff21a9e64da5ce5b6bc7462e807711859617088 (patch)
tree99d5fd1b33e2fdbeb208cef9dae2aa9acf28c5ce /sql/ha_myisam.h
parent334eb77356e6e189419517fa42f0a5567017e85f (diff)
downloadmariadb-git-1ff21a9e64da5ce5b6bc7462e807711859617088.tar.gz
bug#4089 - JOIN::join_free calling mysql_unlock w/o index_end() before
Diffstat (limited to 'sql/ha_myisam.h')
-rw-r--r--sql/ha_myisam.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/ha_myisam.h b/sql/ha_myisam.h
index 9069b41364d..f4c45e6524b 100644
--- a/sql/ha_myisam.h
+++ b/sql/ha_myisam.h
@@ -81,7 +81,7 @@ class ha_myisam: public handler
int index_first(byte * buf);
int index_last(byte * buf);
int index_next_same(byte *buf, const byte *key, uint keylen);
- int index_end() { ft_handler=NULL; return handler::index_end(); }
+ int index_end() { ft_handler=NULL; return 0; }
int ft_init()
{
if (!ft_handler)