Author: cwittich Date: Thu Mar 4 13:35:02 2010 New Revision: 45827
URL: http://svn.reactos.org/svn/reactos?rev=45827&view=rev Log: [SHELL32] Fix length parameter for ZeroMemory Paul Vriens <Paul dot Vriens dot Wine at gmail dot com>
Modified: trunk/reactos/dll/win32/shell32/shfldr_fs.c
Modified: trunk/reactos/dll/win32/shell32/shfldr_fs.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/shfldr_fs... ============================================================================== --- trunk/reactos/dll/win32/shell32/shfldr_fs.c [iso-8859-1] (original) +++ trunk/reactos/dll/win32/shell32/shfldr_fs.c [iso-8859-1] Thu Mar 4 13:35:02 2010 @@ -1578,7 +1578,7 @@ { IGenericSFImpl *This = impl_from_IPersistFolder3(iface); FIXME ("(%p)->(%p)\n", This, ppfti); - ZeroMemory (ppfti, sizeof (ppfti)); + ZeroMemory (ppfti, sizeof (*ppfti)); return E_NOTIMPL; }