mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
Fixed bug where mutex would be destroyed but not recreated for new
net_crypto connection. Only destroy mutex when it is realloced out.
This commit is contained in:
parent
8e9a971e95
commit
33f65929e3
|
@ -1378,12 +1378,18 @@ static int wipe_crypto_connection(Net_Crypto *c, int crypt_connection_id)
|
||||||
return -1;
|
return -1;
|
||||||
|
|
||||||
uint32_t i;
|
uint32_t i;
|
||||||
pthread_mutex_destroy(&c->crypto_connections[crypt_connection_id].mutex);
|
|
||||||
|
/* Keep mutex, only destroy it when connection is realloced out. */
|
||||||
|
pthread_mutex_t mutex = c->crypto_connections[crypt_connection_id].mutex;
|
||||||
memset(&(c->crypto_connections[crypt_connection_id]), 0 , sizeof(Crypto_Connection));
|
memset(&(c->crypto_connections[crypt_connection_id]), 0 , sizeof(Crypto_Connection));
|
||||||
|
c->crypto_connections[crypt_connection_id].mutex = mutex;
|
||||||
|
|
||||||
for (i = c->crypto_connections_length; i != 0; --i) {
|
for (i = c->crypto_connections_length; i != 0; --i) {
|
||||||
if (c->crypto_connections[i - 1].status != CRYPTO_CONN_NO_CONNECTION)
|
if (c->crypto_connections[i - 1].status == CRYPTO_CONN_NO_CONNECTION) {
|
||||||
|
pthread_mutex_destroy(&c->crypto_connections[i - 1].mutex);
|
||||||
|
} else {
|
||||||
break;
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (c->crypto_connections_length != i) {
|
if (c->crypto_connections_length != i) {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user