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
9b329d5b
Commit
9b329d5b
authored
Jul 20, 2010
by
Hans Leidekker
Committed by
Alexandre Julliard
Jul 20, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Keep track of the patch filename in apply_registered_patch.
parent
b8727115
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
+7
-0
package.c
dlls/msi/package.c
+7
-0
No files found.
dlls/msi/package.c
View file @
9b329d5b
...
...
@@ -1210,6 +1210,13 @@ static UINT apply_registered_patch( MSIPACKAGE *package, LPCWSTR patch_code )
return
r
;
}
patch_info
->
localfile
=
strdupW
(
patch_file
);
if
(
!
patch_info
->
localfile
)
{
msiobj_release
(
&
patch_db
->
hdr
);
return
ERROR_OUTOFMEMORY
;
}
r
=
msi_apply_patch_db
(
package
,
patch_db
,
patch_info
);
msiobj_release
(
&
patch_db
->
hdr
);
if
(
r
!=
ERROR_SUCCESS
)
...
...
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