msi: Remove an unneeded assignment.
This commit is contained in:
parent
2b9be70975
commit
a7137ef035
|
@ -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]);
|
||||||
|
|
Loading…
Reference in New Issue