瀏覽代碼

pthread_mutex_unlock: Return EINVAL when given NULL mutex

Jeremy Soller 6 年之前
父節點
當前提交
0fd936b4d4
共有 1 個文件被更改,包括 4 次插入0 次删除
  1. 4 0
      pthread_mutex_unlock.c

+ 4 - 0
pthread_mutex_unlock.c

@@ -60,6 +60,10 @@ pthread_mutex_unlock (pthread_mutex_t * mutex)
   /*
    * Let the system deal with invalid pointers.
    */
+  if (*mutex == NULL)
+    {
+      return EINVAL;
+    }
 
   mx = *mutex;