mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 13:13:44 +01:00
Fix coverity cid 1405509
Locking in the init function is not necessary, but coverity gets confused about it. So let's trick it.
This commit is contained in:
parent
ee478bdf38
commit
71c8974af0
@ -362,8 +362,8 @@ alert_sockets_close(alert_sockets_t *socks)
|
||||
void
|
||||
atomic_counter_init(atomic_counter_t *counter)
|
||||
{
|
||||
memset(counter, 0, sizeof(*counter));
|
||||
tor_mutex_init_nonrecursive(&counter->mutex);
|
||||
counter->val = 0;
|
||||
}
|
||||
/** Clean up all resources held by an atomic counter. */
|
||||
void
|
||||
|
Loading…
Reference in New Issue
Block a user