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
9a9faeff
Commit
9a9faeff
authored
Apr 19, 2010
by
Hans Leidekker
Committed by
Alexandre Julliard
Apr 19, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Don't assume unversioned files are present.
parent
f08c355e
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
2 deletions
+5
-2
action.c
dlls/msi/action.c
+4
-1
patch.c
dlls/msi/tests/patch.c
+1
-1
No files found.
dlls/msi/action.c
View file @
9a9faeff
...
...
@@ -2002,7 +2002,10 @@ static UINT msi_check_file_install_states( MSIPACKAGE *package )
msi_free
(
file_version
);
}
else
file
->
state
=
msifs_present
;
{
file
->
state
=
msifs_overwrite
;
comp
->
Cost
+=
file
->
FileSize
;
}
}
return
ERROR_SUCCESS
;
...
...
dlls/msi/tests/patch.c
View file @
9a9faeff
...
...
@@ -706,7 +706,7 @@ static void test_simple_patch( void )
}
size
=
get_pf_file_size
(
"msitest
\\
patch.txt"
);
todo_wine
ok
(
size
==
1002
,
"expected 1002, got %u
\n
"
,
size
);
ok
(
size
==
1002
,
"expected 1002, got %u
\n
"
,
size
);
strcpy
(
path
,
CURR_DIR
);
strcat
(
path
,
"
\\
"
);
...
...
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