init: Free global init mutex in the destructor on Windows
Fixes: #57 (T238) Signed-off-by: Anderson Toshiyuki Sasaki <ansasaki@redhat.com> Reviewed-by: Jakub Jelen <jjelen@redhat.com>
Этот коммит содержится в:
родитель
84df28ee31
Коммит
163951d869
15
src/init.c
15
src/init.c
@ -161,12 +161,14 @@ static int _ssh_finalize(unsigned destructor) {
|
|||||||
|
|
||||||
if (_ssh_initialized > 1) {
|
if (_ssh_initialized > 1) {
|
||||||
_ssh_initialized--;
|
_ssh_initialized--;
|
||||||
goto _ret;
|
ssh_mutex_unlock(&ssh_init_mutex);
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (_ssh_initialized == 1) {
|
if (_ssh_initialized == 1) {
|
||||||
if (_ssh_init_ret < 0) {
|
if (_ssh_init_ret < 0) {
|
||||||
goto _ret;
|
ssh_mutex_unlock(&ssh_init_mutex);
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -181,10 +183,17 @@ static int _ssh_finalize(unsigned destructor) {
|
|||||||
|
|
||||||
_ssh_initialized = 0;
|
_ssh_initialized = 0;
|
||||||
|
|
||||||
_ret:
|
|
||||||
if (!destructor) {
|
if (!destructor) {
|
||||||
ssh_mutex_unlock(&ssh_init_mutex);
|
ssh_mutex_unlock(&ssh_init_mutex);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if (defined(_WIN32) && !defined(HAVE_PTHREAD))
|
||||||
|
if (ssh_init_mutex != NULL) {
|
||||||
|
DeleteCriticalSection(ssh_init_mutex);
|
||||||
|
SAFE_FREE(ssh_init_mutex);
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Загрузка…
Ссылка в новой задаче
Block a user