Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
e1512177
Commit
e1512177
authored
Nov 09, 2012
by
Hans Leidekker
Committed by
Alexandre Julliard
Nov 09, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Fix use of uninitialized variables.
parent
f6b22a75
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
action.c
dlls/msi/action.c
+1
-1
automation.c
dlls/msi/automation.c
+1
-1
No files found.
dlls/msi/action.c
View file @
e1512177
...
...
@@ -2884,7 +2884,7 @@ static UINT ITERATE_WriteRegistryValues(MSIRECORD *row, LPVOID param)
if
(
type
==
REG_MULTI_SZ
)
{
BYTE
*
new
;
if
(
old_type
!=
REG_MULTI_SZ
)
if
(
old_
value
&&
old_
type
!=
REG_MULTI_SZ
)
{
msi_free
(
old_value
);
old_value
=
NULL
;
...
...
dlls/msi/automation.c
View file @
e1512177
...
...
@@ -846,7 +846,7 @@ static HRESULT RecordImpl_Invoke(
UINT
*
puArgErr
)
{
WCHAR
*
szString
;
DWORD
dwLen
;
DWORD
dwLen
=
0
;
UINT
ret
;
VARIANTARG
varg0
,
varg1
;
HRESULT
hr
;
...
...
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