1
0
mirror of https://github.com/MariaDB/server.git synced 2025-09-02 09:41:40 +03:00
This commit is contained in:
monty@work.mysql.com
2001-05-31 12:56:05 +02:00
69 changed files with 2979 additions and 422 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;
}
}
};