kernel32: Fix some string leaks (Coverity).

Signed-off-by: Sven Baars <sbaars@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Sven Baars 2020-08-24 17:02:02 +02:00 committed by Alexandre Julliard
parent d2496e2d5c
commit 8ea62f2ed1

View file

@ -1775,11 +1775,13 @@ BOOL WINAPI WritePrivateProfileSectionW( LPCWSTR section,
RegCloseKey( section_key );
if (res)
{
HeapFree( GetProcessHeap(), 0, entry_copy );
SetLastError( res );
RegCloseKey( key );
return FALSE;
}
}
HeapFree( GetProcessHeap(), 0, entry_copy );
}
}
RegCloseKey( key );
@ -1917,6 +1919,7 @@ DWORD WINAPI GetPrivateProfileSectionNamesW( LPWSTR buffer, DWORD size,
{
lstrcpynW( buffer + ret, section, size - ret - 1 );
ret = min( ret + strlenW( section ) + 1, size - 1 );
HeapFree( GetProcessHeap(), 0, section );
}
RegCloseKey( key );