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
1a12aace
Commit
1a12aace
authored
Nov 12, 2008
by
Ricardo Filipe
Committed by
Alexandre Julliard
Nov 18, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cabinet: Fix dead stores (llvm/clang).
parent
3d384f17
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
fci.c
dlls/cabinet/fci.c
+1
-1
fdi.c
dlls/cabinet/fdi.c
+1
-1
No files found.
dlls/cabinet/fci.c
View file @
1a12aace
...
...
@@ -462,7 +462,7 @@ static cab_ULONG fci_get_checksum(const void *pv, UINT cb, CHECKSUM seed)
case
2
:
ul
|=
(((
ULONG
)(
*
pb
++
))
<<
8
);
case
1
:
ul
|=
*
pb
++
;
ul
|=
*
pb
;
default:
break
;
}
...
...
dlls/cabinet/fdi.c
View file @
1a12aace
...
...
@@ -2830,7 +2830,7 @@ BOOL __cdecl FDICopy(
if
(
file
->
offset
>
CAB
(
offset
))
{
/* decode bytes and send them to /dev/null */
switch
(
(
err
=
fdi_decomp
(
file
,
0
,
decomp_state
,
pszCabPath
,
pfnfdin
,
pvUser
)
))
{
switch
(
fdi_decomp
(
file
,
0
,
decomp_state
,
pszCabPath
,
pfnfdin
,
pvUser
))
{
case
DECR_OK
:
break
;
case
DECR_USERABORT
:
...
...
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