Skip to content

Commit 6257823

Browse files
committed
Missing colon
1 parent af2fb3c commit 6257823

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

zmq.c

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -136,12 +136,9 @@ static
136136
void s_shared_ctx_destroy()
137137
{
138138
if (s_ctx && s_ctx_pid == getpid()) {
139-
s_shared_ctx_lock();
140-
{
141-
zmq_term(s_ctx);
142-
s_ctx = NULL;
143-
}
144-
s_shared_ctx_unlock()
139+
zmq_term(s_ctx);
140+
s_ctx = NULL;
141+
s_shared_ctx_unlock();
145142
tsrm_mutex_free(s_ctx_mutex);
146143
s_ctx_mutex = NULL;
147144
}

0 commit comments

Comments
 (0)