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
1 changed files with 1 additions and 1 deletions

View File

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