PATCH: comctl32\listview.c

Sander van Leeuwen sandervl at xs4all.nl
Mon Sep 16 06:30:05 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.c	Mon Sep 16 13:26:16 2002
+++ listview.co	Mon Sep 16 13:08:54 2002
@@ -754,7 +754,7 @@
     }
     do {
         if (idx == nSize) {
-            if (endidx == nSize || endidx == 0)
+            if (endidx == nSize)
                 break;
             idx=0;
         }





More information about the wine-patches mailing list