From owner-svn-ports-all@freebsd.org Thu Jul 16 13:25:16 2020 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 9DEB6361EC8; Thu, 16 Jul 2020 13:25:16 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4B6w3c2FcMz4WNH; Thu, 16 Jul 2020 13:25:16 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 31D829203; Thu, 16 Jul 2020 13:25:16 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 06GDPGgl020043; Thu, 16 Jul 2020 13:25:16 GMT (envelope-from madpilot@FreeBSD.org) Received: (from madpilot@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 06GDPFUj020042; Thu, 16 Jul 2020 13:25:15 GMT (envelope-from madpilot@FreeBSD.org) Message-Id: <202007161325.06GDPFUj020042@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: madpilot set sender to madpilot@FreeBSD.org using -f From: Guido Falsi Date: Thu, 16 Jul 2020 13:25:15 +0000 (UTC) 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 X-SVN-Group: ports-head X-SVN-Commit-Author: madpilot X-SVN-Commit-Paths: in head/x11-fm/thunar: . files X-SVN-Commit-Revision: 542357 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Jul 2020 13:25:16 -0000 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) + {