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
f8dc7c22
Commit
f8dc7c22
authored
Mar 25, 2015
by
Hans Leidekker
Committed by
Alexandre Julliard
Mar 25, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Use the last sequence number specified for patch media when updating media records.
parent
cd73576e
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
4 deletions
+2
-4
msipriv.h
dlls/msi/msipriv.h
+0
-1
patch.c
dlls/msi/patch.c
+2
-3
No files found.
dlls/msi/msipriv.h
View file @
f8dc7c22
...
...
@@ -193,7 +193,6 @@ typedef struct tagMSIPATCHINFO
MSIPATCHSTATE
state
;
BOOL
delete_on_close
;
UINT
disk_id
;
UINT
last_sequence
;
}
MSIPATCHINFO
;
typedef
struct
tagMSIBINARY
...
...
dlls/msi/patch.c
View file @
f8dc7c22
...
...
@@ -741,7 +741,7 @@ static UINT patch_add_media( MSIPACKAGE *package, IStorage *storage, MSIPATCHINF
disk_id
=
package
->
db
->
media_transform_disk_id
;
TRACE
(
"disk id %u
\n
"
,
disk_id
);
TRACE
(
"last sequence %u
\n
"
,
patch
->
last_sequence
);
TRACE
(
"last sequence %u
\n
"
,
media
->
last_sequence
);
TRACE
(
"prompt %s
\n
"
,
debugstr_w
(
media
->
prompt
));
TRACE
(
"cabinet %s
\n
"
,
debugstr_w
(
media
->
cabinet
));
TRACE
(
"volume %s
\n
"
,
debugstr_w
(
media
->
volume
));
...
...
@@ -749,7 +749,7 @@ static UINT patch_add_media( MSIPACKAGE *package, IStorage *storage, MSIPATCHINF
rec
=
MSI_CreateRecord
(
6
);
MSI_RecordSetInteger
(
rec
,
1
,
disk_id
);
MSI_RecordSetInteger
(
rec
,
2
,
patch
->
last_sequence
);
MSI_RecordSetInteger
(
rec
,
2
,
media
->
last_sequence
);
MSI_RecordSetStringW
(
rec
,
3
,
media
->
prompt
);
MSI_RecordSetStringW
(
rec
,
4
,
media
->
cabinet
);
MSI_RecordSetStringW
(
rec
,
5
,
media
->
volume
);
...
...
@@ -828,7 +828,6 @@ static UINT patch_set_offsets( MSIDATABASE *db, MSIPATCHINFO *patch )
if
(
r
!=
ERROR_SUCCESS
)
ERR
(
"Failed to update Media table entry, expect breakage (%u)
\n
"
,
r
);
patch
->
last_sequence
=
last_sequence
;
db
->
media_transform_offset
=
last_sequence
+
1
;
patch_offset_list_free
(
pos
);
...
...
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