diff options
author | Sinisa@sinisa.nasamreza.org <> | 2003-04-26 15:12:14 +0300 |
---|---|---|
committer | Sinisa@sinisa.nasamreza.org <> | 2003-04-26 15:12:14 +0300 |
commit | 3ca1a152ebd5eaa0bf5c714404633444d69be5e4 (patch) | |
tree | 2b95575b4286f33a9be8c889def65f21ec7b0aea /sql/sql_lex.h | |
parent | adb52cfc70b8624dfbf4d36fa966fc20b3b0452d (diff) | |
download | mariadb-git-3ca1a152ebd5eaa0bf5c714404633444d69be5e4.tar.gz |
Making a better fix for double released pointers and safe
TMP_TABLE_PARAM.
This involved moving things around in include files.
All tests, including the ones with Valgrind passed.
Diffstat (limited to 'sql/sql_lex.h')
-rw-r--r-- | sql/sql_lex.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/sql_lex.h b/sql/sql_lex.h index 97cf19454ae..47743685890 100644 --- a/sql/sql_lex.h +++ b/sql/sql_lex.h @@ -397,7 +397,7 @@ public: friend void mysql_init_query(THD *thd); st_select_lex(struct st_lex *lex); - st_select_lex() {;} + st_select_lex() {} void make_empty_select(st_select_lex *last_select) { select_number=INT_MAX; @@ -480,7 +480,7 @@ typedef struct st_lex CHARSET_INFO *charset; char *help_arg; SQL_LIST *gorder_list; - st_lex() {;} + st_lex() {} inline void uncacheable() { safe_to_cache_query= 0; |