Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 16 Jul 2020 13:25:15 +0000 (UTC)
From:      Guido Falsi <madpilot@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r542357 - in head/x11-fm/thunar: . files
Message-ID:  <202007161325.06GDPFUj020042@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: madpilot
Date: Thu Jul 16 13:25:15 2020
New Revision: 542357
URL: https://svnweb.freebsd.org/changeset/ports/542357

Log:
  Import patch merged upstream to fix sporadic crashes caused by an
  incorrect assertion in the cose.
  
  PR:		247961
  Submitted by:	rozhuk.im@gmail.com
  MFH:		2020Q3

Added:
  head/x11-fm/thunar/files/
  head/x11-fm/thunar/files/patch-thunar_thunar-list-model.c   (contents, props changed)
Modified:
  head/x11-fm/thunar/Makefile

Modified: head/x11-fm/thunar/Makefile
==============================================================================
--- head/x11-fm/thunar/Makefile	Thu Jul 16 13:24:01 2020	(r542356)
+++ head/x11-fm/thunar/Makefile	Thu Jul 16 13:25:15 2020	(r542357)
@@ -3,6 +3,7 @@
 
 PORTNAME=	thunar
 DISTVERSION=	1.8.15
+PORTREVISION=	1
 CATEGORIES=	x11-fm xfce
 MASTER_SITES=	XFCE
 DIST_SUBDIR=	xfce4

Added: head/x11-fm/thunar/files/patch-thunar_thunar-list-model.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/x11-fm/thunar/files/patch-thunar_thunar-list-model.c	Thu Jul 16 13:25:15 2020	(r542357)
@@ -0,0 +1,11 @@
+--- thunar/thunar-list-model.c.orig	2020-05-24 12:27:08 UTC
++++ thunar/thunar-list-model.c
+@@ -705,7 +705,7 @@ thunar_list_model_get_value (GtkTreeModel *model,
+   _thunar_return_if_fail (iter->stamp == (THUNAR_LIST_MODEL (model))->stamp);
+ 
+   file = g_sequence_get (iter->user_data);
+-  _thunar_assert (THUNAR_IS_FILE (file));
++  _thunar_return_if_fail (THUNAR_IS_FILE (file));
+ 
+   switch (column)
+     {



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202007161325.06GDPFUj020042>