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
5cb10c96
Commit
5cb10c96
authored
Oct 15, 2014
by
Hans Leidekker
Committed by
Alexandre Julliard
Oct 15, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Don't skip the media check for the first volume.
Some installers require the first volume to be reinserted.
parent
e94d2e04
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
9 deletions
+1
-9
media.c
dlls/msi/media.c
+1
-8
msipriv.h
dlls/msi/msipriv.h
+0
-1
No files found.
dlls/msi/media.c
View file @
5cb10c96
...
...
@@ -298,9 +298,6 @@ static UINT CDECL msi_media_get_disk_info(MSIPACKAGE *package, MSIMEDIAINFO *mi)
mi
->
cabinet
=
strdupW
(
MSI_RecordGetString
(
row
,
4
));
mi
->
volume_label
=
strdupW
(
MSI_RecordGetString
(
row
,
5
));
if
(
!
mi
->
first_volume
)
mi
->
first_volume
=
strdupW
(
mi
->
volume_label
);
msiobj_release
(
&
row
->
hdr
);
return
ERROR_SUCCESS
;
}
...
...
@@ -673,7 +670,6 @@ void msi_free_media_info(MSIMEDIAINFO *mi)
msi_free
(
mi
->
disk_prompt
);
msi_free
(
mi
->
cabinet
);
msi_free
(
mi
->
volume_label
);
msi_free
(
mi
->
first_volume
);
msi_free
(
mi
);
}
...
...
@@ -719,9 +715,6 @@ UINT msi_load_media_info(MSIPACKAGE *package, UINT Sequence, MSIMEDIAINFO *mi)
mi
->
volume_label
=
strdupW
(
MSI_RecordGetString
(
row
,
5
));
msiobj_release
(
&
row
->
hdr
);
if
(
!
mi
->
first_volume
)
mi
->
first_volume
=
strdupW
(
mi
->
volume_label
);
msi_set_sourcedir_props
(
package
,
FALSE
);
source_dir
=
msi_dup_property
(
package
->
db
,
szSourceDir
);
lstrcpyW
(
mi
->
sourcedir
,
source_dir
);
...
...
@@ -891,7 +884,7 @@ UINT ready_media( MSIPACKAGE *package, BOOL compressed, MSIMEDIAINFO *mi )
}
}
/* check volume matches, change media if not */
if
(
mi
->
volume_label
&&
mi
->
disk_id
>
1
&&
strcmpW
(
mi
->
first_volume
,
mi
->
volume_label
)
)
if
(
mi
->
volume_label
&&
mi
->
disk_id
>
1
)
{
WCHAR
*
source
=
msi_dup_property
(
package
->
db
,
szSourceDir
);
BOOL
match
=
source_matches_volume
(
mi
,
source
);
...
...
dlls/msi/msipriv.h
View file @
5cb10c96
...
...
@@ -154,7 +154,6 @@ typedef struct tagMSIMEDIAINFO
UINT
last_sequence
;
LPWSTR
disk_prompt
;
LPWSTR
cabinet
;
LPWSTR
first_volume
;
LPWSTR
volume_label
;
BOOL
is_continuous
;
BOOL
is_extracted
;
...
...
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