This is an automated email from the git hooks/post-receive script. a l e x 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/thunar.
commit 67102a81fd87d9fc32c6e457fe0a5fc23a97f31d Author: Daniel Reichelt <[email protected]> Date: Wed Feb 28 21:53:09 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 37cdf0e..703a584 100644 --- a/thunar/thunar-thumbnailer.c +++ b/thunar/thunar-thumbnailer.c @@ -254,13 +254,14 @@ thunar_thumbnailer_queue_async_reply (GObject *proxy, GAsyncResult *res, gpointer user_data) { + _thunar_return_if_fail (THUNAR_IS_THUMBNAILER_DBUS (proxy)); + _thunar_return_if_fail (user_data != NULL); + ThunarThumbnailerJob *job = user_data; ThunarThumbnailer *thumbnailer = THUNAR_THUMBNAILER (job->thumbnailer); GError *error = NULL; guint handle; - _thunar_return_if_fail (THUNAR_IS_THUMBNAILER_DBUS (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
