diff options
author | Matthias Clasen <mclasen@redhat.com> | 2021-03-31 16:21:55 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2021-03-31 16:31:07 -0400 |
commit | 3aab7d85577d1aff46d7c7f131622cb73e9fe66a (patch) | |
tree | 0139b1778dcc0b1a050627ebd22b13a3e4d3b281 /pango | |
parent | 5ce5b8f5b7dc4616d0d88454a23dd3bd89902265 (diff) | |
download | pango-3aab7d85577d1aff46d7c7f131622cb73e9fe66a.tar.gz |
Fix hangs that people have observedfix-deadlocks
We were erroneously setting fc_initialized back to 1
in one place. But now 1 means 'wait for the FcInit thread
that is already underway. Setting it to 2 restores the
intention.
Diffstat (limited to 'pango')
-rw-r--r-- | pango/pangofc-fontmap.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/pango/pangofc-fontmap.c b/pango/pangofc-fontmap.c index 813b6c78..7966a8cd 100644 --- a/pango/pangofc-fontmap.c +++ b/pango/pangofc-fontmap.c @@ -1372,7 +1372,6 @@ start_init_in_thread (PangoFcFontMap *fcfontmap) GTask *task; fc_initialized = 1; - task = g_task_new (fcfontmap, NULL, NULL, NULL); g_task_set_name (task, "[pango] FcInit"); g_task_run_in_thread (task, init_in_thread); @@ -2333,7 +2332,7 @@ pango_fc_font_map_set_config (PangoFcFontMap *fcfontmap, FcConfigDestroy (oldconfig); /* No need to wait anymore */ - fc_initialized = TRUE; + fc_initialized = 2; } /** |