shell32: Fix length parameter for ZeroMemory (Coccinelle).

oldstable
Paul Vriens 2010-01-08 09:23:40 +01:00 committed by Alexandre Julliard
parent c8681f885d
commit cb5e6f378a
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}