From 7f326fcef006bcfc7b7c440a84e4431821b34d46 Mon Sep 17 00:00:00 2001 From: marcus Date: Fri, 9 Oct 2009 03:59:16 +0000 Subject: When opening a device fails, be sure to close the file descriptor, or we will leak descriptors, and possibly prevent device mounting. git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@13102 df743ca5-7f9a-e211-a948-0013205c9059 --- sysutils/brasero/Makefile | 3 ++- sysutils/brasero/files/patch-libbrasero-media_scsi-cam.c | 12 ++++++++++++ 2 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 sysutils/brasero/files/patch-libbrasero-media_scsi-cam.c diff --git a/sysutils/brasero/Makefile b/sysutils/brasero/Makefile index 74e5d8e21..faa792e25 100644 --- a/sysutils/brasero/Makefile +++ b/sysutils/brasero/Makefile @@ -3,10 +3,11 @@ # Whom: Michael Johnson # # $FreeBSD$ -# $MCom: ports/sysutils/brasero/Makefile,v 1.54 2009/09/21 19:19:27 kwm Exp $ +# $MCom: ports/sysutils/brasero/Makefile,v 1.55 2009/10/05 18:47:45 kwm Exp $ PORTNAME= brasero PORTVERSION= 2.28.1 +PORTREVISION= 1 CATEGORIES= sysutils audio multimedia gnome MASTER_SITES= GNOME DIST_SUBDIR= gnome2 diff --git a/sysutils/brasero/files/patch-libbrasero-media_scsi-cam.c b/sysutils/brasero/files/patch-libbrasero-media_scsi-cam.c new file mode 100644 index 000000000..fe31c298c --- /dev/null +++ b/sysutils/brasero/files/patch-libbrasero-media_scsi-cam.c @@ -0,0 +1,12 @@ +--- libbrasero-media/scsi-cam.c.orig 2009-10-08 22:34:11.000000000 -0400 ++++ libbrasero-media/scsi-cam.c 2009-10-08 22:35:09.000000000 -0400 +@@ -193,6 +193,9 @@ brasero_device_handle_open (const gchar + *code = BRASERO_SCSI_ERRNO; + } + ++ if (fd > -1) ++ close (fd); ++ + return NULL; + } + -- cgit v1.2.3