Commit be759ddd authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

msi: Uninitialized variable fix (Coverity).

parent 8ccd53dd
......@@ -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;
......
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