Andrew Talbot : msi: Uninitialized variable fix (Coverity).
Module: wine Branch: master Commit: be759dddb81e279d7c57e497c00404484588cd10 URL: http://source.winehq.org/git/wine.git/?a=commit;h=be759dddb81e279d7c57e497c0... Author: Andrew Talbot <andrew.talbot(a)talbotville.com> Date: Tue Sep 9 22:50:39 2008 +0100 msi: Uninitialized variable fix (Coverity). --- dlls/msi/action.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/msi/action.c b/dlls/msi/action.c index 8a8efe7..2208b58 100644 --- a/dlls/msi/action.c +++ b/dlls/msi/action.c @@ -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;
participants (1)
-
Alexandre Julliard