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
92725e52
Commit
92725e52
authored
Aug 11, 2006
by
Andrew Talbot
Committed by
Alexandre Julliard
Aug 11, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Write-strings warning fix.
parent
b6f190ee
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
files.c
dlls/msi/files.c
+2
-1
No files found.
dlls/msi/files.c
View file @
92725e52
...
...
@@ -283,6 +283,7 @@ static BOOL extract_cabinet_file(MSIPACKAGE* package, LPCWSTR source,
BOOL
ret
;
char
*
cabinet
;
char
*
cab_path
;
static
CHAR
empty
[]
=
""
;
CabData
data
;
TRACE
(
"Extracting %s to %s
\n
"
,
debugstr_w
(
source
),
debugstr_w
(
path
));
...
...
@@ -317,7 +318,7 @@ static BOOL extract_cabinet_file(MSIPACKAGE* package, LPCWSTR source,
data
.
package
=
package
;
data
.
cab_path
=
cab_path
;
ret
=
FDICopy
(
hfdi
,
cabinet
,
""
,
0
,
cabinet_notify
,
NULL
,
&
data
);
ret
=
FDICopy
(
hfdi
,
cabinet
,
empty
,
0
,
cabinet_notify
,
NULL
,
&
data
);
if
(
!
ret
)
ERR
(
"FDICopy failed
\n
"
);
...
...
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