Commit cb5e6f37 authored by Paul Vriens's avatar Paul Vriens Committed by Alexandre Julliard

shell32: Fix length parameter for ZeroMemory (Coccinelle).

parent c8681f88
......@@ -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;
}
......
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