[gtk/wip/baedert/for-master: 6/7] label: Unref style_attrs list
- From: Timm Bäder <baedert src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk/wip/baedert/for-master: 6/7] label: Unref style_attrs list
- Date: Fri, 17 Apr 2020 18:31:12 +0000 (UTC)
commit 5a35ef329ff441d84d81b55566dec653590a6c81
Author: Timm Bäder <mail baedert org>
Date: Fri Apr 17 17:08:04 2020 +0200
label: Unref style_attrs list
gtk/gtklabel.c | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
---
diff --git a/gtk/gtklabel.c b/gtk/gtklabel.c
index 33d5d7cc2b..6ddbdd9392 100644
--- a/gtk/gtklabel.c
+++ b/gtk/gtklabel.c
@@ -2810,7 +2810,10 @@ gtk_label_update_layout_attributes (GtkLabel *self,
PangoAttrList *attrs;
if (self->layout == NULL)
- return;
+ {
+ pango_attr_list_unref (style_attrs);
+ return;
+ }
if (self->select_info && self->select_info->links)
{
@@ -2871,8 +2874,7 @@ gtk_label_update_layout_attributes (GtkLabel *self,
pango_layout_set_attributes (self->layout, attrs);
- if (attrs)
- pango_attr_list_unref (attrs);
+ pango_attr_list_unref (attrs);
}
static void
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]