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
67189f9d
Commit
67189f9d
authored
Sep 16, 2005
by
Mike McCormack
Committed by
Alexandre Julliard
Sep 16, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix a bug in a previous patch spotted by Dieter Komendera.
parent
4a202c21
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
4 deletions
+2
-4
action.c
dlls/msi/action.c
+2
-4
No files found.
dlls/msi/action.c
View file @
67189f9d
...
...
@@ -3405,7 +3405,6 @@ static UINT ACTION_RegisterProduct(MSIPACKAGE *package)
buffer
=
msi_dup_property
(
package
,
szPropKeys
[
i
]
);
msi_reg_set_val_str
(
hkey
,
szRegKeys
[
i
],
buffer
);
HeapFree
(
GetProcessHeap
(),
0
,
buffer
);
i
++
;
}
msi_reg_set_val_dword
(
hkey
,
szWindowsInstaller
,
1
);
...
...
@@ -3668,12 +3667,11 @@ static UINT ACTION_RegisterUser(MSIPACKAGE *package)
if
(
rc
!=
ERROR_SUCCESS
)
goto
end
;
i
=
0
;
while
(
szPropKeys
[
i
][
0
]
!=
0
)
for
(
i
=
0
;
szPropKeys
[
i
][
0
];
i
++
)
{
buffer
=
msi_dup_property
(
package
,
szPropKeys
[
i
]
);
msi_reg_set_val_str
(
hkey
,
szRegKeys
[
i
],
buffer
);
i
++
;
HeapFree
(
GetProcessHeap
(),
0
,
buffer
)
;
}
end:
...
...
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