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
53f6d82e
Commit
53f6d82e
authored
Aug 19, 2022
by
Jiajin Cui
Committed by
Alexandre Julliard
Aug 19, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
win32u: Don't allow a replaced font to be a replacement.
This is to prevent replacement loops.
parent
88ead398
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
font.c
dlls/win32u/font.c
+6
-0
No files found.
dlls/win32u/font.c
View file @
53f6d82e
...
...
@@ -903,6 +903,12 @@ static BOOL add_family_replacement( const WCHAR *new_name, const WCHAR *replace
return
FALSE
;
}
if
(
family
->
replacement
)
{
TRACE
(
"%s is replaced by another font, skipping.
\n
"
,
debugstr_w
(
replace
)
);
return
FALSE
;
}
if
(
!
(
new_family
=
create_family
(
new_name
,
NULL
)))
return
FALSE
;
new_family
->
replacement
=
family
;
family
->
refcount
++
;
...
...
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