From e28877c85a3858599e53e94b83992091cc40ca8a Mon Sep 17 00:00:00 2001 From: Steven Dake Date: Mon, 6 Jun 2005 20:33:59 +0000 Subject: [PATCH] defect 599 Qian Zhang reported defect 599 which was a missing pthread_mutex_unlock. Patch attached to fix it. (Logical change 1.201) git-svn-id: http://svn.fedorahosted.org/svn/corosync/trunk@653 fd59a12c-fef9-0310-b244-a6a79926bd2f --- lib/clm.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/clm.c b/lib/clm.c index 1caa0208..450792ee 100644 --- a/lib/clm.c +++ b/lib/clm.c @@ -564,6 +564,8 @@ saClmClusterNodeGetAsync ( error = res_clm_nodegetasync.header.error; error_exit: + pthread_mutex_unlock (&clmInstance->response_mutex); + saHandleInstancePut (&clmHandleDatabase, clmHandle); return (error);