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

Removed wrong mutex lock (hangup in kill on HPUX)

all free_defaults() on exit in mysql.cc;  Should fix problem with SSL
This commit is contained in:
monty@mashka.mysql.fi
2002-08-24 02:08:10 +03:00
parent a9c1508d7e
commit d49bf802ec
8 changed files with 93 additions and 20 deletions

View File

@ -477,13 +477,12 @@ public:
}
inline void close_active_vio()
{
pthread_mutex_lock(&LOCK_delete);
safe_mutex_assert_owner(&LOCK_delete);
if (active_vio)
{
vio_close(active_vio);
active_vio = 0;
}
pthread_mutex_unlock(&LOCK_delete);
}
#endif
void awake(bool prepare_to_die);