summaryrefslogtreecommitdiff
path: root/sem_trywait.c
diff options
context:
space:
mode:
Diffstat (limited to 'sem_trywait.c')
-rw-r--r--sem_trywait.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/sem_trywait.c b/sem_trywait.c
index 4d1451d..63614ba 100644
--- a/sem_trywait.c
+++ b/sem_trywait.c
@@ -85,6 +85,15 @@ sem_trywait (sem_t * sem)
}
else if ((result = pthread_mutex_lock (&s->lock)) == 0)
{
+ /* See sem_destroy.c
+ */
+ if (*sem == NULL)
+ {
+ (void) pthread_mutex_unlock (&s->lock);
+ errno = EINVAL;
+ return -1;
+ }
+
if (s->value > 0)
{
s->value--;