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
533e90ba
Commit
533e90ba
authored
Sep 15, 2019
by
Alex Henrie
Committed by
Alexandre Julliard
Sep 16, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
glu32: Avoid dead assignment (scan-build).
Signed-off-by:
Alex Henrie
<
alexhenrie24@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
ae6e4017
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
3 deletions
+0
-3
mesh.c
dlls/glu32/mesh.c
+0
-3
No files found.
dlls/glu32/mesh.c
View file @
533e90ba
...
...
@@ -743,7 +743,6 @@ void __gl_meshCheckMesh( GLUmesh *mesh )
GLUvertex
*
v
,
*
vPrev
;
GLUhalfEdge
*
e
,
*
ePrev
;
fPrev
=
fHead
;
for
(
fPrev
=
fHead
;
(
f
=
fPrev
->
next
)
!=
fHead
;
fPrev
=
f
)
{
assert
(
f
->
prev
==
fPrev
);
e
=
f
->
anEdge
;
...
...
@@ -758,7 +757,6 @@ void __gl_meshCheckMesh( GLUmesh *mesh )
}
assert
(
f
->
prev
==
fPrev
&&
f
->
anEdge
==
NULL
&&
f
->
data
==
NULL
);
vPrev
=
vHead
;
for
(
vPrev
=
vHead
;
(
v
=
vPrev
->
next
)
!=
vHead
;
vPrev
=
v
)
{
assert
(
v
->
prev
==
vPrev
);
e
=
v
->
anEdge
;
...
...
@@ -773,7 +771,6 @@ void __gl_meshCheckMesh( GLUmesh *mesh )
}
assert
(
v
->
prev
==
vPrev
&&
v
->
anEdge
==
NULL
&&
v
->
data
==
NULL
);
ePrev
=
eHead
;
for
(
ePrev
=
eHead
;
(
e
=
ePrev
->
next
)
!=
eHead
;
ePrev
=
e
)
{
assert
(
e
->
Sym
->
next
==
ePrev
->
Sym
);
assert
(
e
->
Sym
!=
e
);
...
...
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