diff options
Diffstat (limited to 'sysutils/brasero/files')
-rw-r--r-- | sysutils/brasero/files/patch-libbrasero-media_scsi-cam.c | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/sysutils/brasero/files/patch-libbrasero-media_scsi-cam.c b/sysutils/brasero/files/patch-libbrasero-media_scsi-cam.c deleted file mode 100644 index e342112f8..000000000 --- a/sysutils/brasero/files/patch-libbrasero-media_scsi-cam.c +++ /dev/null @@ -1,27 +0,0 @@ ---- libbrasero-media/scsi-cam.c.orig 2009-09-25 10:39:03.000000000 -0400 -+++ libbrasero-media/scsi-cam.c 2009-10-10 13:30:06.000000000 -0400 -@@ -184,6 +184,8 @@ brasero_device_handle_open (const gchar - handle->fd = fd; - } - else { -+ int serrno; -+ - if (code) { - if (errno == EAGAIN - || errno == EWOULDBLOCK -@@ -193,6 +195,15 @@ brasero_device_handle_open (const gchar - *code = BRASERO_SCSI_ERRNO; - } - -+ serrno = errno; -+ -+ if (fd > -1) -+ close (fd); -+ if (cam) -+ cam_close_device (cam); -+ -+ errno = serrno; -+ - return NULL; - } - |