1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Simple fixes (nothing notable)

This commit is contained in:
monty@mashka.mysql.fi
2003-03-12 01:40:06 +02:00
parent 7fdf7a4101
commit 8edc752573
5 changed files with 9 additions and 14 deletions

View File

@ -419,12 +419,14 @@ CHANGED_TABLE_LIST* THD::changed_table_dup(const char *key, long key_length)
#ifdef SIGNAL_WITH_VIO_CLOSE
void THD::close_active_vio()
{
DBUG_ENTER("close_active_vio");
safe_mutex_assert_owner(&LOCK_delete);
if (active_vio)
{
vio_close(active_vio);
active_vio = 0;
}
DBUG_RETURN;
}
#endif