msi: Remove an unneeded assignment.

This commit is contained in:
Hans Leidekker 2012-04-20 10:56:46 +02:00 committed by Alexandre Julliard
parent 2b9be70975
commit a7137ef035

View file

@ -2363,7 +2363,7 @@ static UINT fetch_user_product( const WCHAR *match, const WCHAR *usersid, DWORD
}
strcpyW( path, user );
strcatW( path, subkey );
if ((r = RegOpenKeyExW( key_users, path, 0, access, &key_products )))
if (RegOpenKeyExW( key_users, path, 0, access, &key_products ))
{
i++;
len_user = sizeof(user)/sizeof(user[0]);