1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-27 18:02:13 +03:00

Fix warnings from icc

Added BUILD scripts for icc
Fixed (one time) memory leak in grant handling
This commit is contained in:
monty@mysql.com
2005-05-18 19:00:21 +03:00
parent ca5b291be0
commit db40af2a6f
13 changed files with 212 additions and 118 deletions

View File

@ -898,10 +898,11 @@ struct st_lex_local: public st_lex
{ /* Never called */ }
};
void lex_init(void);
void lex_free(void);
void lex_start(THD *thd, uchar *buf,uint length);
void lex_end(LEX *lex);
extern void lex_init(void);
extern void lex_free(void);
extern void lex_start(THD *thd, uchar *buf,uint length);
extern void lex_end(LEX *lex);
extern int yylex(void *arg, void *yythd);
extern pthread_key(LEX*,THR_LEX);