From 26e57732ad22ed38a1e9162a571b9fbaed05ac1e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A9=20van=20Geldorp?= Date: Wed, 10 Dec 2003 17:33:42 +0000 Subject: [PATCH] Advancing the list pointer helps prevent infinite loops svn path=/trunk/; revision=6948 --- reactos/subsys/win32k/objects/cursoricon.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/reactos/subsys/win32k/objects/cursoricon.c b/reactos/subsys/win32k/objects/cursoricon.c index 2faaa9dbcb4..e9277759ed3 100644 --- a/reactos/subsys/win32k/objects/cursoricon.c +++ b/reactos/subsys/win32k/objects/cursoricon.c @@ -16,7 +16,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -/* $Id: cursoricon.c,v 1.32 2003/12/09 20:58:16 weiden Exp $ */ +/* $Id: cursoricon.c,v 1.33 2003/12/10 17:33:42 gvg Exp $ */ #undef WIN32_LEAN_AND_MEAN @@ -259,6 +259,7 @@ IntFindExistingCurIconObject(PWINSTATION_OBJECT WinStaObject, HMODULE hModule, return Object; } } + CurrentEntry = CurrentEntry->Flink; } ExReleaseFastMutex(&HandleTable->ListLock);