Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 21 Feb 2020 09:01:32 +0000 (UTC)
From:      Matthias Andree <mandree@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r526615 - in head/graphics/rawtherapee: . files
Message-ID:  <202002210901.01L91Wqu029634@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: mandree
Date: Fri Feb 21 09:01:32 2020
New Revision: 526615
URL: https://svnweb.freebsd.org/changeset/ports/526615

Log:
  rawtherapee: Fix segfault on close when started with filename argument
  
  (This did not affect rawtherapee-cli.)
  
  Obtained from:	https://github.com/Beep6581/RawTherapee/commit/e7a4ae3c9fa987d625b537573fd811a9cb5d2fb8

Added:
  head/graphics/rawtherapee/files/patch-rtgui_rtwindow.cc   (contents, props changed)
Modified:
  head/graphics/rawtherapee/Makefile

Modified: head/graphics/rawtherapee/Makefile
==============================================================================
--- head/graphics/rawtherapee/Makefile	Fri Feb 21 08:10:01 2020	(r526614)
+++ head/graphics/rawtherapee/Makefile	Fri Feb 21 09:01:32 2020	(r526615)
@@ -3,6 +3,7 @@
 
 PORTNAME=	rawtherapee
 PORTVERSION=	5.8
+PORTREVISION=	1
 CATEGORIES=	graphics
 MASTER_SITES=	https://rawtherapee.com/shared/source/ \
 		LOCAL/mandree/

Added: head/graphics/rawtherapee/files/patch-rtgui_rtwindow.cc
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/rawtherapee/files/patch-rtgui_rtwindow.cc	Fri Feb 21 09:01:32 2020	(r526615)
@@ -0,0 +1,19 @@
+commit e7a4ae3c9fa987d625b537573fd811a9cb5d2fb8
+Author: Ingo Weyrich <heckflosse67@gmx.de>
+Date:   Tue Feb 18 18:07:45 2020 +0100
+
+    Fix segfault on close of RT when RT was started with a filename as argument
+
+diff --git a/rtgui/rtwindow.cc b/rtgui/rtwindow.cc
+index 8cfeb8ec0..fc315e1b7 100644
+--- rtgui/rtwindow.cc.orig	2020-02-04 06:39:52 UTC
++++ rtgui/rtwindow.cc
+@@ -99,6 +99,8 @@ RTWindow::RTWindow ()
+     , bpanel (nullptr)
+     , splash (nullptr)
+     , btn_fullscreen (nullptr)
++    , iFullscreen (nullptr)
++    , iFullscreen_exit (nullptr)
+     , epanel (nullptr)
+     , fpanel (nullptr)
+ {



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