mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
msi: Fail if a registry key cannot be created.
This commit is contained in:
parent
fd0c2dabdf
commit
fc2c8a215f
1 changed files with 1 additions and 1 deletions
|
@ -2645,7 +2645,7 @@ static UINT ITERATE_WriteRegistryValues(MSIRECORD *row, LPVOID param)
|
|||
ERR("Could not create key %s\n", debugstr_w(keypath));
|
||||
msi_free(uikey);
|
||||
msi_free(keypath);
|
||||
return ERROR_SUCCESS;
|
||||
return ERROR_FUNCTION_FAILED;
|
||||
}
|
||||
value = parse_value(package, MSI_RecordGetString(row, 5), &type, &size);
|
||||
deformat_string(package, name, &deformated);
|
||||
|
|
Loading…
Reference in a new issue