diff options
author | Matthias Clasen <mclasen@redhat.com> | 2022-01-25 20:48:44 -0500 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2022-01-25 20:48:44 -0500 |
commit | 4c9d3a2222b3921d3c6ed5eabd0d8a90f458ffed (patch) | |
tree | fce7808feb734bfe13ab6529fa246e1f4a499ff7 /pango | |
parent | d815d061c85ec5f403f007453c502d18f5616ea4 (diff) | |
download | pango-4c9d3a2222b3921d3c6ed5eabd0d8a90f458ffed.tar.gz |
layout: Fix an oversight
Diffstat (limited to 'pango')
-rw-r--r-- | pango/pango-layout.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pango/pango-layout.c b/pango/pango-layout.c index 1810e128..e6587c0f 100644 --- a/pango/pango-layout.c +++ b/pango/pango-layout.c @@ -677,7 +677,7 @@ retry: { if (pango_line_breaker_undo_line (breaker, line)) { - g_clear_object (&line); + g_clear_pointer (&line, pango_line_free); ellipsize = layout->ellipsize; goto retry; } |