[Xfce4-commits] [xfce/xfdesktop] 01/01: Fix memory leak when reconnecting DP monitor (Bug #16314)

noreply at xfce.org noreply at xfce.org
Sat Apr 11 18:16:27 CEST 2020


This is an automated email from the git hooks/post-receive script.

a   n   d   r   e       p   u   s   h   e   d       a       c   o   m   m   i   t       t   o       b   r   a   n   c   h       m   a   s   t   e   r   
   in repository xfce/xfdesktop.

commit f3f9bdb5a9162480ba1a892d37859321f37c4d51
Author: Jan Ziak <0xe2.0x9a.0x9b at gmail.com>
Date:   Sat Apr 11 15:43:55 2020 +0200

    Fix memory leak when reconnecting DP monitor (Bug #16314)
    
    Signed-off-by: Jan Ziak <0xe2.0x9a.0x9b at gmail.com>
---
 src/xfce-backdrop.c | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/src/xfce-backdrop.c b/src/xfce-backdrop.c
index bd9180e..955e51f 100644
--- a/src/xfce-backdrop.c
+++ b/src/xfce-backdrop.c
@@ -1599,6 +1599,11 @@ xfce_backdrop_image_data_release(XfceBackdropImageData *image_data)
 
     if(image_data->loader)
         g_object_unref(image_data->loader);
+
+    if(image_data->backdrop) {
+        g_object_unref(image_data->backdrop);
+        image_data->backdrop = NULL;
+    }
 }
 
 /**
@@ -1671,6 +1676,7 @@ xfce_backdrop_generate_async(XfceBackdrop *backdrop)
     backdrop->priv->image_data = image_data;
 
     image_data->backdrop = backdrop;
+    g_object_ref(backdrop);
     image_data->loader = gdk_pixbuf_loader_new();
     image_data->cancellable = g_cancellable_new();
     image_data->image_buffer = g_new0(guchar, XFCE_BACKDROP_BUFFER_SIZE);

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Xfce4-commits mailing list