Commit a7137ef0 authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

msi: Remove an unneeded assignment.

parent 2b9be709
......@@ -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]);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment