PATCH: comctl32\listview.c (resend)

Sander van Leeuwen sandervl at xs4all.nl
Mon Sep 16 06:31:15 CDT 2002


Changelog:
* dll\comctl32\listview.c
- LISTVIEW_ProcessLetterKeys: fixed never ending loop when end index is zero

Author:
Sander van Leeuwen <sandervl at xs4all.nl>

License: X11 / LGPL

--- listview.co	Mon Sep 16 13:08:54 2002
+++ listview.c	Mon Sep 16 13:26:16 2002
@@ -754,7 +754,7 @@
     }
     do {
         if (idx == nSize) {
-            if (endidx == nSize)
+            if (endidx == nSize || endidx == 0)
                 break;
             idx=0;
         }


===================END FORWARDED MESSAGE===================





More information about the wine-patches mailing list