Merge pull request #1389 from rubenk/perl-unlock-on-error
authorRuben Kerkhof <ruben@tilaa.nl>
Sun, 29 Nov 2015 18:05:09 +0000 (19:05 +0100)
committerRuben Kerkhof <ruben@tilaa.nl>
Sun, 29 Nov 2015 18:05:09 +0000 (19:05 +0100)
perl: unlock mutex on error

src/perl.c

index 0a98684..cf09586 100644 (file)
@@ -1199,7 +1199,10 @@ static void c_ithread_destructor (void *arg)
 
        /* the ithread no longer exists */
        if (NULL == t)
+       {
+               pthread_mutex_unlock (&perl_threads->mutex);
                return;
+       }
 
        c_ithread_destroy (ithread);