Date: Mon, 21 Sep 2020 10:32:30 +0000 (UTC) From: Ganael LAPLANCHE <martymac@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r549433 - in head/emulators/virtualbox-ose: . files Message-ID: <202009211032.08LAWUtC011837@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: martymac Date: Mon Sep 21 10:32:30 2020 New Revision: 549433 URL: https://svnweb.freebsd.org/changeset/ports/549433 Log: Fix crash when accessing physical CD/DVD PR: 248333 Reported by: mfv@bway.net Approved by: koobs (vbox) MFH: 2020Q3 Added: head/emulators/virtualbox-ose/files/patch-src-VBox-Devices-Storage-DrvHostBase-freebsd.cpp (contents, props changed) Modified: head/emulators/virtualbox-ose/Makefile Modified: head/emulators/virtualbox-ose/Makefile ============================================================================== --- head/emulators/virtualbox-ose/Makefile Mon Sep 21 09:57:53 2020 (r549432) +++ head/emulators/virtualbox-ose/Makefile Mon Sep 21 10:32:30 2020 (r549433) @@ -3,7 +3,7 @@ PORTNAME= virtualbox-ose PORTVERSION= 5.2.44 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= emulators MASTER_SITES= https://download.oracle.com/virtualbox/${PORTVERSION}/ DISTFILES= VirtualBox-${PORTVERSION}${EXTRACT_SUFX} ${GUESTADDITIONS} Added: head/emulators/virtualbox-ose/files/patch-src-VBox-Devices-Storage-DrvHostBase-freebsd.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/emulators/virtualbox-ose/files/patch-src-VBox-Devices-Storage-DrvHostBase-freebsd.cpp Mon Sep 21 10:32:30 2020 (r549433) @@ -0,0 +1,11 @@ +--- src/VBox/Devices/Storage/DrvHostBase-freebsd.cpp 2020-09-17 20:17:20 UTC ++++ src/VBox/Devices/Storage/DrvHostBase-freebsd.cpp +@@ -149,6 +149,8 @@ + else + rc = RTErrConvertFromErrno(errno); + } ++ ++ return rc; + } + +
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202009211032.08LAWUtC011837>