mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 10:41:12 +00:00
explorerframe: Fixed incorrect sizeof (Coverity).
This commit is contained in:
parent
06935e9323
commit
230f63c3d2
1 changed files with 1 additions and 1 deletions
|
@ -1114,7 +1114,7 @@ static HRESULT WINAPI NSTC2_fnGetRootItems(INameSpaceTreeControl2* iface,
|
||||||
if(!count)
|
if(!count)
|
||||||
return E_INVALIDARG;
|
return E_INVALIDARG;
|
||||||
|
|
||||||
array = HeapAlloc(GetProcessHeap(), 0, sizeof(LPITEMIDLIST*)*count);
|
array = HeapAlloc(GetProcessHeap(), 0, sizeof(LPITEMIDLIST)*count);
|
||||||
|
|
||||||
i = 0;
|
i = 0;
|
||||||
LIST_FOR_EACH_ENTRY(root, &This->roots, nstc_root, entry)
|
LIST_FOR_EACH_ENTRY(root, &This->roots, nstc_root, entry)
|
||||||
|
|
Loading…
Reference in a new issue