Commit 17ac4059 authored by Rémi Bernon's avatar Rémi Bernon Committed by Alexandre Julliard

dwrite: Statically init the system_fallback locale list.

To avoid a crash on DLL unload if it wasn't initialized.
parent 90d50bc6
......@@ -551,7 +551,10 @@ struct dwrite_fontfallback_builder
size_t mappings_size;
};
static struct fallback_data system_fallback;
static struct fallback_data system_fallback =
{
.locales = LIST_INIT(system_fallback.locales),
};
static void release_fallback_mapping(struct fallback_mapping *mapping)
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment