Close the key only if we have opened it (it's not the case when the subkey name is empty)

svn path=/trunk/; revision=20324
This commit is contained in:
Hervé Poussineau
2005-12-24 23:24:40 +00:00
parent 4d21beb957
commit b0ed55d762
+2 -2
View File
@@ -433,10 +433,10 @@ static BOOL registry_callback( HINF hinf, PCWSTR field, void *arg )
/* and now do it */
if (!do_reg_operation( hkey, buffer, &context, flags ))
{
RegCloseKey( hkey );
if (hkey != root_key) RegCloseKey( hkey );
return FALSE;
}
RegCloseKey( hkey );
if (hkey != root_key) RegCloseKey( hkey );
}
return TRUE;
}