From 95b71ed8857383e3de52bd36065d804faf9081a1 Mon Sep 17 00:00:00 2001 From: Richard Cohen Date: Thu, 2 Jun 2005 20:06:22 +0000 Subject: [PATCH] IEnum::Clone shouldn't do a Reset. --- dlls/ole32/moniker.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/ole32/moniker.c b/dlls/ole32/moniker.c index a1ffa6ef992..f83b2fdad4a 100644 --- a/dlls/ole32/moniker.c +++ b/dlls/ole32/moniker.c @@ -968,7 +968,7 @@ static HRESULT WINAPI EnumMonikerImpl_CreateEnumROTMoniker(MInterfacePointer **m /* the initial reference is set to "1" */ This->ref = 1; /* set the ref count to one */ - This->pos = 0; /* Set the list start posn to start */ + This->pos = current_pos; /* Set the list start posn */ This->moniker_count = moniker_count; /* Need the same size table as ROT */ This->monikers = monikers; -- 2.11.4.GIT