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
a9c03e6d
Commit
a9c03e6d
authored
Jan 20, 2023
by
Francois Gouget
Committed by
Alexandre Julliard
Jan 20, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
win32u: Document the font_lock handling in font_EnumFonts().
Wine-Bug:
https://bugs.winehq.org//show_bug.cgi?id=49202
parent
7f62f7be
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
font.c
dlls/win32u/font.c
+2
-2
No files found.
dlls/win32u/font.c
View file @
a9c03e6d
...
...
@@ -3551,7 +3551,7 @@ static BOOL CDECL font_EnumFonts( PHYSDEV dev, LOGFONTW *lf, FONTENUMPROCW proc,
{
if
(
!
face_matches
(
family
->
family_name
,
face
,
face_name
))
continue
;
if
(
!
enum_face_charsets
(
family
,
face
,
enum_charsets
,
count
,
proc
,
lparam
,
orig_name
))
return
FALSE
;
return
FALSE
;
/* enum_face_charsets() unlocked font_lock */
}
}
}
...
...
@@ -3562,7 +3562,7 @@ static BOOL CDECL font_EnumFonts( PHYSDEV dev, LOGFONTW *lf, FONTENUMPROCW proc,
{
face
=
LIST_ENTRY
(
list_head
(
get_family_face_list
(
family
)),
struct
gdi_font_face
,
entry
);
if
(
!
enum_face_charsets
(
family
,
face
,
enum_charsets
,
count
,
proc
,
lparam
,
NULL
))
return
FALSE
;
return
FALSE
;
/* enum_face_charsets() unlocked font_lock */
}
}
pthread_mutex_unlock
(
&
font_lock
);
...
...
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