1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-30 11:22:14 +03:00

Added functions for symbolic link handling to make it possible to

backport things from 4.0. This is safe as the functions are not used!
Fixed bug in new mutex handling in InnoDB
Make allow_break() and dont_break() defines.
This commit is contained in:
monty@hundin.mysql.fi
2001-05-31 12:18:53 +03:00
parent acf598c50c
commit 6a387c7cdf
11 changed files with 220 additions and 23 deletions

View File

@@ -138,8 +138,11 @@ class TMP_TABLE_PARAM {
}
inline void cleanup(void)
{
delete [] copy_field;
copy_field=0;
if (copy_field) /* Fix for Intel compiler */
{
delete [] copy_field;
copy_field=0;
}
}
};