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

alex pushed a 
commit to branch 
xfce-4.12
in repository xfce/thunar.

commit 31b96783edc74b9e716ce1c9d63cb0ede0a4300d
Author: Daniel Reichelt <[email protected]>
Date:   Wed Feb 28 22:13:22 2018 +0100

    SIGSEGV when thumbnailer is under heavy load after opening many tabs
    (bug #13756)
---
 thunar/thunar-thumbnailer.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/thunar/thunar-thumbnailer.c b/thunar/thunar-thumbnailer.c
index 52daad9..d113405 100644
--- a/thunar/thunar-thumbnailer.c
+++ b/thunar/thunar-thumbnailer.c
@@ -607,11 +607,12 @@ thunar_thumbnailer_queue_async_reply (DBusGProxy *proxy,
                                       GError     *error,
                                       gpointer    user_data)
 {
+  _thunar_return_if_fail (DBUS_IS_G_PROXY (proxy));
+  _thunar_return_if_fail (user_data != NULL);
+
   ThunarThumbnailerJob *job = user_data;
   ThunarThumbnailer    *thumbnailer = THUNAR_THUMBNAILER (job->thumbnailer);
 
-  _thunar_return_if_fail (DBUS_IS_G_PROXY (proxy));
-  _thunar_return_if_fail (job != NULL);
   _thunar_return_if_fail (THUNAR_IS_THUMBNAILER (thumbnailer));
 
   _thumbnailer_lock (thumbnailer);

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
_______________________________________________
Xfce4-commits mailing list
[email protected]
https://mail.xfce.org/mailman/listinfo/xfce4-commits

Reply via email to