Skip to content

Commit

Permalink
Clang format
Browse files Browse the repository at this point in the history
  • Loading branch information
stefankiesz committed Nov 12, 2024
1 parent 905e47d commit f32487e
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/source/Ice/ConnectionListener.c
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ STATUS freeConnectionListener(PConnectionListener* ppConnectionListener)
ATOMIC_STORE_BOOL(&pConnectionListener->terminate, TRUE);

if (IS_VALID_MUTEX_VALUE(pConnectionListener->lock)) {

// TODO add support for windows socketpair
// This writes to the socketpair, kicking the POLL() out early,
// otherwise wait for the POLL to timeout
Expand All @@ -77,7 +76,7 @@ STATUS freeConnectionListener(PConnectionListener* ppConnectionListener)
THREAD_JOIN(threadId, NULL);
pConnectionListener->receiveDataRoutine = INVALID_MUTEX_VALUE;
}

MUTEX_UNLOCK(pConnectionListener->lock);
MUTEX_FREE(pConnectionListener->lock);
}
Expand Down

0 comments on commit f32487e

Please sign in to comment.