From de50b65e95e19f8606ed7924db8d3d887732472d Mon Sep 17 00:00:00 2001 From: =?utf-8?q?Miko=C5=82aj_Zalewski?= Date: Wed, 13 Feb 2008 18:24:55 +0100 Subject: [PATCH] browseui: aclmulti: follow the Windows Vista behavious in Expand --- dlls/browseui/aclmulti.c | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/dlls/browseui/aclmulti.c b/dlls/browseui/aclmulti.c index 3fb49b8..b0a0ec8 100644 --- a/dlls/browseui/aclmulti.c +++ b/dlls/browseui/aclmulti.c @@ -257,8 +257,7 @@ static HRESULT WINAPI ACLMulti_Expand(IACList *iface, LPCWSTR wstr) if (!This->objs[i].pACL) continue; res = IACList_Expand(This->objs[i].pACL, wstr); - if (res == S_OK) - break; + /* Vista behaviour - XP would break out of the loop if res == S_OK (usually calling Expand only once) */ } return res; } -- 1.4.4.2