Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
34f74fdc
Commit
34f74fdc
authored
Nov 03, 2012
by
André Hentschel
Committed by
Alexandre Julliard
Nov 05, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
riched20: Remove duplicate operand in expression (coverity).
parent
574cf27f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
5 deletions
+1
-5
writer.c
dlls/riched20/writer.c
+1
-5
No files found.
dlls/riched20/writer.c
View file @
34f74fdc
...
...
@@ -251,11 +251,8 @@ ME_StreamOutRTFFontAndColorTbl(ME_OutStream *pStream, ME_DisplayItem *pFirstRun,
}
while
(
item
);
item
=
ME_GetParagraph
(
pFirstRun
);
do
{
if
(
item
->
member
.
para
.
pCell
&&
item
->
member
.
para
.
pCell
)
if
(
(
pCell
=
item
->
member
.
para
.
pCell
)
)
{
pCell
=
item
->
member
.
para
.
pCell
;
if
(
pCell
)
{
ME_Border
*
borders
[
4
]
=
{
&
pCell
->
member
.
cell
.
border
.
top
,
&
pCell
->
member
.
cell
.
border
.
left
,
&
pCell
->
member
.
cell
.
border
.
bottom
,
...
...
@@ -275,7 +272,6 @@ ME_StreamOutRTFFontAndColorTbl(ME_OutStream *pStream, ME_DisplayItem *pFirstRun,
}
}
}
}
}
if
(
item
==
pLastPara
)
break
;
...
...
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