1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +03:00

fixed parameter to avoid accessing unallocated memory

This commit is contained in:
bell@sanja.is.com.ua
2004-12-13 14:54:13 +02:00
parent 9819df20c9
commit 157af12f36

View File

@@ -1418,7 +1418,7 @@ JOIN::exec()
WHERE clause for any tables after the sorted one.
*/
JOIN_TAB *curr_table= &curr_join->join_tab[curr_join->const_tables+1];
JOIN_TAB *end_table= &curr_join->join_tab[tables];
JOIN_TAB *end_table= &curr_join->join_tab[curr_join->tables];
for (; curr_table < end_table ; curr_table++)
{
/*