Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
353035fa
Commit
353035fa
authored
Mar 04, 2010
by
Hans Leidekker
Committed by
Alexandre Julliard
Mar 04, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Initialize a couple of variables.
Found by Valgrind.
parent
f370ab7e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
action.c
dlls/msi/action.c
+3
-4
No files found.
dlls/msi/action.c
View file @
353035fa
...
...
@@ -4285,8 +4285,7 @@ static UINT ACTION_PublishFeatures(MSIPACKAGE *package)
{
MSIFEATURE
*
feature
;
UINT
rc
;
HKEY
hkey
;
HKEY
userdata
=
NULL
;
HKEY
hkey
=
NULL
,
userdata
=
NULL
;
if
(
!
msi_check_publish
(
package
))
return
ERROR_SUCCESS
;
...
...
@@ -4853,7 +4852,7 @@ static UINT ITERATE_PublishComponent(MSIRECORD *rec, LPVOID param)
MSIPACKAGE
*
package
=
param
;
LPCWSTR
compgroupid
,
component
,
feature
,
qualifier
,
text
;
LPWSTR
advertise
=
NULL
,
output
=
NULL
;
HKEY
hkey
;
HKEY
hkey
=
NULL
;
UINT
rc
;
MSICOMPONENT
*
comp
;
MSIFEATURE
*
feat
;
...
...
@@ -5933,7 +5932,7 @@ static UINT ITERATE_WriteEnvironmentString( MSIRECORD *rec, LPVOID param )
LPWSTR
data
=
NULL
,
newval
=
NULL
,
deformatted
=
NULL
,
ptr
;
DWORD
flags
,
type
,
size
;
UINT
res
;
HKEY
env
;
HKEY
env
=
NULL
;
MSICOMPONENT
*
comp
;
MSIRECORD
*
uirow
;
int
action
=
0
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment