We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3ab32ec + bbac8f8 commit c1089b8Copy full SHA for c1089b8
audisp/plugins/zos-remote/zos-remote-queue.c
@@ -152,5 +152,7 @@ void destroy_queue(void)
152
}
153
154
free(q);
155
+ pthread_mutex_destroy(&queue_lock);
156
+ pthread_cond_destroy(&queue_nonempty);
157
158
audisp/queue.c
@@ -346,6 +346,7 @@ void destroy_queue(void)
346
free((void *)q[i]);
347
348
349
350
sem_destroy(&queue_nonempty);
351
#ifdef HAVE_ATOMIC
352
/*
0 commit comments