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
db999065
Commit
db999065
authored
Aug 22, 2017
by
Nikolay Sivov
Committed by
Alexandre Julliard
Aug 24, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dwrite: Use safer method to set per-factory system collection reference.
Signed-off-by:
Nikolay Sivov
<
nsivov@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
072a9b00
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
34 additions
and
18 deletions
+34
-18
main.c
dlls/dwrite/main.c
+34
-18
No files found.
dlls/dwrite/main.c
View file @
db999065
...
...
@@ -645,6 +645,27 @@ static struct collectionloader *factory_get_collection_loader(struct dwritefacto
return
found
;
}
static
IDWriteFontCollection1
*
factory_get_system_collection
(
struct
dwritefactory
*
factory
)
{
IDWriteFontCollection1
*
collection
;
HRESULT
hr
;
if
(
factory
->
system_collection
)
{
IDWriteFontCollection1_AddRef
(
factory
->
system_collection
);
return
factory
->
system_collection
;
}
if
(
FAILED
(
hr
=
get_system_fontcollection
(
&
factory
->
IDWriteFactory5_iface
,
&
collection
)))
{
WARN
(
"Failed to create system font collection, hr %#x.
\n
"
,
hr
);
return
NULL
;
}
if
(
InterlockedCompareExchangePointer
((
void
**
)
&
factory
->
system_collection
,
collection
,
NULL
))
IDWriteFontCollection1_Release
(
collection
);
return
factory
->
system_collection
;
}
static
HRESULT
WINAPI
dwritefactory_QueryInterface
(
IDWriteFactory5
*
iface
,
REFIID
riid
,
void
**
obj
)
{
struct
dwritefactory
*
This
=
impl_from_IDWriteFactory5
(
iface
);
...
...
@@ -1095,21 +1116,23 @@ static HRESULT WINAPI dwritefactory_CreateTextFormat(IDWriteFactory5 *iface, WCH
DWRITE_FONT_STRETCH
stretch
,
FLOAT
size
,
WCHAR
const
*
locale
,
IDWriteTextFormat
**
format
)
{
struct
dwritefactory
*
This
=
impl_from_IDWriteFactory5
(
iface
);
IDWriteFontCollection
*
syscollection
=
NULL
;
HRESULT
hr
;
TRACE
(
"(%p)->(%s %p %d %d %d %f %s %p)
\n
"
,
This
,
debugstr_w
(
family_name
),
collection
,
weight
,
style
,
stretch
,
size
,
debugstr_w
(
locale
),
format
);
if
(
!
collection
)
{
hr
=
IDWriteFactory5_GetSystemFontCollection
(
iface
,
FALSE
,
(
IDWriteFontCollection1
**
)
&
syscollection
,
FALSE
);
if
(
FAILED
(
hr
))
return
hr
;
if
(
collection
)
IDWriteFontCollection_AddRef
(
collection
);
else
{
collection
=
(
IDWriteFontCollection
*
)
factory_get_system_collection
(
This
);
if
(
!
collection
)
{
*
format
=
NULL
;
return
E_FAIL
;
}
}
hr
=
create_textformat
(
family_name
,
collection
?
collection
:
syscollection
,
weight
,
style
,
stretch
,
size
,
locale
,
format
);
if
(
syscollection
)
IDWriteFontCollection_Release
(
syscollection
);
hr
=
create_textformat
(
family_name
,
collection
,
weight
,
style
,
stretch
,
size
,
locale
,
format
);
IDWriteFontCollection_Release
(
collection
);
return
hr
;
}
...
...
@@ -1460,7 +1483,6 @@ static HRESULT WINAPI dwritefactory3_GetSystemFontCollection(IDWriteFactory5 *if
IDWriteFontCollection1
**
collection
,
BOOL
check_for_updates
)
{
struct
dwritefactory
*
This
=
impl_from_IDWriteFactory5
(
iface
);
HRESULT
hr
=
S_OK
;
TRACE
(
"(%p)->(%d %p %d)
\n
"
,
This
,
include_downloadable
,
collection
,
check_for_updates
);
...
...
@@ -1470,14 +1492,9 @@ static HRESULT WINAPI dwritefactory3_GetSystemFontCollection(IDWriteFactory5 *if
if
(
check_for_updates
)
FIXME
(
"checking for system font updates not implemented
\n
"
);
if
(
This
->
system_collection
)
IDWriteFontCollection1_AddRef
(
This
->
system_collection
);
else
hr
=
get_system_fontcollection
(
iface
,
&
This
->
system_collection
);
*
collection
=
This
->
system_collection
;
*
collection
=
factory_get_system_collection
(
This
);
return
hr
;
return
*
collection
?
S_OK
:
E_FAIL
;
}
static
HRESULT
WINAPI
dwritefactory3_GetFontDownloadQueue
(
IDWriteFactory5
*
iface
,
IDWriteFontDownloadQueue
**
queue
)
...
...
@@ -1783,8 +1800,7 @@ static void init_dwritefactory(struct dwritefactory *factory, DWRITE_FACTORY_TYP
void
factory_detach_fontcollection
(
IDWriteFactory5
*
iface
,
IDWriteFontCollection1
*
collection
)
{
struct
dwritefactory
*
factory
=
impl_from_IDWriteFactory5
(
iface
);
if
(
factory
->
system_collection
==
collection
)
factory
->
system_collection
=
NULL
;
InterlockedCompareExchangePointer
((
void
**
)
&
factory
->
system_collection
,
NULL
,
collection
);
if
(
factory
->
eudc_collection
==
collection
)
factory
->
eudc_collection
=
NULL
;
IDWriteFactory5_Release
(
iface
);
...
...
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