mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
msi: Uninitialized variable fix (Coverity).
This commit is contained in:
parent
8ccd53dd7a
commit
be759dddb8
1 changed files with 1 additions and 1 deletions
|
@ -3838,7 +3838,7 @@ static UINT ACTION_PublishFeatures(MSIPACKAGE *package)
|
|||
MSIFEATURE *feature;
|
||||
UINT rc;
|
||||
HKEY hkey;
|
||||
HKEY userdata;
|
||||
HKEY userdata = NULL;
|
||||
|
||||
if (!msi_check_publish(package))
|
||||
return ERROR_SUCCESS;
|
||||
|
|
Loading…
Reference in a new issue