shell32: Fix length parameter for ZeroMemory (Coccinelle).
This commit is contained in:
parent
c8681f885d
commit
cb5e6f378a
|
@ -1504,7 +1504,7 @@ IFSFldr_PersistFolder3_GetFolderTargetInfo (IPersistFolder3 * iface,
|
|||
{
|
||||
IGenericSFImpl *This = impl_from_IPersistFolder3(iface);
|
||||
FIXME ("(%p)->(%p)\n", This, ppfti);
|
||||
ZeroMemory (ppfti, sizeof (ppfti));
|
||||
ZeroMemory (ppfti, sizeof (*ppfti));
|
||||
return E_NOTIMPL;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue