diff options
author | Matthias Clasen <mclasen@redhat.com> | 2020-08-19 04:16:58 +0000 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2020-08-19 04:16:58 +0000 |
commit | e08269b8847d64843498f7ebf5bc6e5de6fbc45e (patch) | |
tree | 023d32b2918309764170e4c9e46a28ce18b5a6fb /pango/pango-layout.c | |
parent | 2b84ec4c130f646b5121d2a3d762e327769456a4 (diff) | |
parent | 0c25ed9998bb5c6f2f8134f4469daca460f76667 (diff) | |
download | pango-e08269b8847d64843498f7ebf5bc6e5de6fbc45e.tar.gz |
Merge branch 'minor-fix' into 'master'
Minor fixes
Closes #495
See merge request GNOME/pango!224
Diffstat (limited to 'pango/pango-layout.c')
-rw-r--r-- | pango/pango-layout.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pango/pango-layout.c b/pango/pango-layout.c index 92d858b2..7d5b9b10 100644 --- a/pango/pango-layout.c +++ b/pango/pango-layout.c @@ -3609,6 +3609,9 @@ find_hyphen_width (PangoItem *item) hb_font_t *hb_font; hb_codepoint_t glyph; + if (!item->analysis.font) + return 0; + /* This is not technically correct, since * a) we may end up inserting a different hyphen * b) we should reshape the entire run |