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
3182a363
Commit
3182a363
authored
Dec 03, 2008
by
Ricardo Filipe
Committed by
Alexandre Julliard
Dec 04, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
iccvid: Remove dead stores (llvm/clang).
parent
a582b389
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
iccvid.c
dlls/iccvid/iccvid.c
+2
-3
No files found.
dlls/iccvid/iccvid.c
View file @
3182a363
...
...
@@ -390,13 +390,13 @@ static void decode_cinepak(cinepak_info *cvinfo, unsigned char *buf, int size,
unsigned
long
x
,
y
,
y_bottom
,
frame_flags
,
strips
,
cv_width
,
cv_height
,
cnum
,
strip_id
,
chunk_id
,
x0
,
y0
,
x1
,
y1
,
ci
,
flag
,
mask
;
long
len
,
top_size
,
chunk_size
;
unsigned
char
*
frm_ptr
,
*
frm_end
;
unsigned
char
*
frm_ptr
;
unsigned
int
i
,
cur_strip
;
int
d0
,
d1
,
d2
,
d3
,
frm_stride
,
bpp
=
3
;
fn_cvid_v1
cvid_v1
=
cvid_v1_24
;
fn_cvid_v4
cvid_v4
=
cvid_v4_24
;
x
=
y
=
0
;
y
=
0
;
y_bottom
=
0
;
in_buffer
=
buf
;
...
...
@@ -431,7 +431,6 @@ static void decode_cinepak(cinepak_info *cvinfo, unsigned char *buf, int size,
frm_stride
=
width
*
bpp
;
frm_ptr
=
frame
;
frm_end
=
frm_ptr
+
width
*
height
*
bpp
;
if
(
len
!=
size
)
{
...
...
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