Commit a17e222d authored by Mikołaj Zalewski's avatar Mikołaj Zalewski Committed by Alexandre Julliard

browseui: aclmulti: Follow the Windows Vista behavious in Expand.

parent c9492a5b
...@@ -257,8 +257,7 @@ static HRESULT WINAPI ACLMulti_Expand(IACList *iface, LPCWSTR wstr) ...@@ -257,8 +257,7 @@ static HRESULT WINAPI ACLMulti_Expand(IACList *iface, LPCWSTR wstr)
if (!This->objs[i].pACL) if (!This->objs[i].pACL)
continue; continue;
res = IACList_Expand(This->objs[i].pACL, wstr); res = IACList_Expand(This->objs[i].pACL, wstr);
if (res == S_OK) /* Vista behaviour - XP would break out of the loop if res == S_OK (usually calling Expand only once) */
break;
} }
return res; return res;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment