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
e60bf536
Commit
e60bf536
authored
May 12, 2010
by
Hans Leidekker
Committed by
Alexandre Julliard
May 12, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Improve some traces.
parent
6475c11c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
10 deletions
+4
-10
files.c
dlls/msi/files.c
+3
-5
media.c
dlls/msi/media.c
+1
-5
No files found.
dlls/msi/files.c
View file @
e60bf536
...
...
@@ -121,8 +121,7 @@ static UINT copy_install_file(MSIPACKAGE *package, MSIFILE *file, LPWSTR source)
{
UINT
gle
;
TRACE
(
"Copying %s to %s
\n
"
,
debugstr_w
(
source
),
debugstr_w
(
file
->
TargetPath
));
TRACE
(
"Copying %s to %s
\n
"
,
debugstr_w
(
source
),
debugstr_w
(
file
->
TargetPath
));
gle
=
copy_file
(
file
,
source
);
if
(
gle
==
ERROR_SUCCESS
)
...
...
@@ -248,7 +247,7 @@ UINT ACTION_InstallFiles(MSIPACKAGE *package)
rc
=
ready_media
(
package
,
file
,
mi
);
if
(
rc
!=
ERROR_SUCCESS
)
{
ERR
(
"Failed to ready media
\n
"
);
ERR
(
"Failed to ready media
for %s
\n
"
,
debugstr_w
(
file
->
File
)
);
break
;
}
...
...
@@ -288,8 +287,7 @@ UINT ACTION_InstallFiles(MSIPACKAGE *package)
}
else
if
(
file
->
state
!=
msifs_installed
)
{
ERR
(
"compressed file wasn't extracted (%s)
\n
"
,
debugstr_w
(
file
->
TargetPath
));
ERR
(
"compressed file wasn't installed (%s)
\n
"
,
debugstr_w
(
file
->
TargetPath
));
rc
=
ERROR_INSTALL_FAILURE
;
break
;
}
...
...
dlls/msi/media.c
View file @
e60bf536
...
...
@@ -471,8 +471,6 @@ static INT_PTR cabinet_close_file_info(FDINOTIFICATIONTYPE fdint,
static
INT_PTR
CDECL
cabinet_notify
(
FDINOTIFICATIONTYPE
fdint
,
PFDINOTIFICATION
pfdin
)
{
TRACE
(
"(%d)
\n
"
,
fdint
);
switch
(
fdint
)
{
case
fdintPARTIAL_FILE
:
...
...
@@ -494,8 +492,6 @@ static INT_PTR CDECL cabinet_notify(FDINOTIFICATIONTYPE fdint, PFDINOTIFICATION
static
INT_PTR
CDECL
cabinet_notify_stream
(
FDINOTIFICATIONTYPE
fdint
,
PFDINOTIFICATION
pfdin
)
{
TRACE
(
"(%d)
\n
"
,
fdint
);
switch
(
fdint
)
{
case
fdintCOPY_FILE
:
...
...
@@ -774,7 +770,7 @@ UINT ready_media(MSIPACKAGE *package, MSIFILE *file, MSIMEDIAINFO *mi)
rc
=
msi_load_media_info
(
package
,
file
,
mi
);
if
(
rc
!=
ERROR_SUCCESS
)
{
ERR
(
"Unable to load media info
\n
"
);
ERR
(
"Unable to load media info
%u
\n
"
,
rc
);
return
ERROR_FUNCTION_FAILED
;
}
...
...
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