1
0
mirror of https://github.com/MariaDB/server.git synced 2026-01-06 05:22:24 +03:00

Added support for ULONG division with DIV

Fixed non fatal memory leak in slave code.
This commit is contained in:
monty@narttu.mysql.fi
2003-03-19 21:23:13 +02:00
parent a916a03916
commit 48a9c1239c
12 changed files with 53 additions and 26 deletions

View File

@@ -1637,6 +1637,8 @@ TABLE *open_temporary_table(THD *thd, const char *path, const char *db,
bool rm_temporary_table(enum db_type base, char *path)
{
bool error=0;
DBUG_ENTER("rm_temporary_table");
fn_format(path, path,"",reg_ext,4);
unpack_filename(path,path);
if (my_delete(path,MYF(0)))
@@ -1646,7 +1648,7 @@ bool rm_temporary_table(enum db_type base, char *path)
if (file && file->delete_table(path))
error=1;
delete file;
return error;
DBUG_RETURN(error);
}