commit | d338b49574f42f7c6230d55e45c5f76f5d6ecccb | [log] [tgz] |
---|---|---|
author | Alexandre Julliard <julliard@winehq.org> | Fri May 02 20:18:09 2003 +0000 |
committer | Alexandre Julliard <julliard@winehq.org> | Fri May 02 20:18:09 2003 +0000 |
tree | a01bfa1a6351bf0579baadac9a99c33481b31f27 | |
parent | 98cfe58dcfcde91101cb9a186daecd16d48eede0 [diff] [blame] |
Removed no longer correct assertion.
diff --git a/server/semaphore.c b/server/semaphore.c index 99f41f3..599ce68 100644 --- a/server/semaphore.c +++ b/server/semaphore.c
@@ -92,8 +92,7 @@ } else if (sem->count) { - /* there cannot be any thread waiting if the count is != 0 */ - assert( !sem->obj.head ); + /* there cannot be any thread to wake up if the count is != 0 */ sem->count += count; } else