WaitForMultipleObjects loops forever if passed an array of size zero

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Index: dlls/ntdll/sync.c
===================================================================
RCS file: /home/wine/wine/dlls/ntdll/sync.c,v
retrieving revision 1.27
diff -u -r1.27 sync.c
--- dlls/ntdll/sync.c	4 Apr 2003 22:26:34 -0000	1.27
+++ dlls/ntdll/sync.c	25 Jun 2003 01:18:33 -0000
@@ -412,7 +412,7 @@
 {
     int ret, cookie;
 
-    if (count > MAXIMUM_WAIT_OBJECTS) return STATUS_INVALID_PARAMETER_1;
+    if (count > MAXIMUM_WAIT_OBJECTS || count <= 0) return 
STATUS_INVALID_PARAMETER_1;
 
     for (;;)
     {
I



[Index of Archives]     [Gimp for Windows]     [Red Hat]     [Samba]     [Yosemite Camping]     [Graphics Cards]     [Wine Home]

  Powered by Linux