mirror of
https://github.com/reactos/wine.git
synced 2025-02-27 08:15:36 +00:00
shell32: autocomplete: Don't pass NULL pceltFetched to IEnumString_Next.
This commit is contained in:
parent
e7d22dc966
commit
763018e176
@ -574,7 +574,8 @@ static LRESULT APIENTRY ACEditSubclassProc(HWND hwnd, UINT uMsg, WPARAM wParam,
|
||||
IEnumString_Reset(This->enumstr);
|
||||
filled = FALSE;
|
||||
for(cpt = 0;;) {
|
||||
hr = IEnumString_Next(This->enumstr, 1, &strs, NULL);
|
||||
ULONG fetched;
|
||||
hr = IEnumString_Next(This->enumstr, 1, &strs, &fetched);
|
||||
if (hr != S_OK)
|
||||
break;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user