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
83d48483
Commit
83d48483
authored
Oct 12, 2015
by
Nikolay Sivov
Committed by
Alexandre Julliard
Oct 13, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dwrite: Return strictly 0/1 for BOOL return type (PVS-Studio).
Signed-off-by:
Nikolay Sivov
<
nsivov@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
4b6a7e78
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
freetype.c
dlls/dwrite/freetype.c
+1
-1
No files found.
dlls/dwrite/freetype.c
View file @
83d48483
...
...
@@ -641,7 +641,7 @@ INT freetype_get_charmap_index(IDWriteFontFace2 *fontface, BOOL *is_symbol)
if
(
os2
->
version
==
0
)
*
is_symbol
=
pFT_Get_First_Char
(
face
,
&
dummy
)
>=
0x100
;
else
*
is_symbol
=
os2
->
ulCodePageRange1
&
FS_SYMBOL
;
*
is_symbol
=
!!
(
os2
->
ulCodePageRange1
&
FS_SYMBOL
)
;
}
for
(
i
=
0
;
i
<
face
->
num_charmaps
;
i
++
)
...
...
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