diff options
author | Michael Meskes <meskes@debian.org> | 2009-07-01 09:52:17 +0200 |
---|---|---|
committer | Michael Meskes <meskes@debian.org> | 2009-07-01 09:52:17 +0200 |
commit | cd9e51a2df2e1e0c3ce43de2e635edcbd42b9178 (patch) | |
tree | 77e6d4a7c0eb6aade1237d1fec727c8191753dd0 | |
parent | 88b75ad9dd4119ed0ed6593b9c94d1410406b236 (diff) | |
download | virtualbox-cd9e51a2df2e1e0c3ce43de2e635edcbd42b9178.tar.gz |
Removed patch that's part of upstream release.
-rw-r--r-- | debian/patches/00list | 1 | ||||
-rwxr-xr-x | debian/patches/21-usb-export.dpatch | 23 |
2 files changed, 0 insertions, 24 deletions
diff --git a/debian/patches/00list b/debian/patches/00list index e54c14865..d93b7d650 100644 --- a/debian/patches/00list +++ b/debian/patches/00list @@ -15,4 +15,3 @@ 17-disable-help-contents.dpatch 18-xorg-1.6.dpatch 20-hide-help-buttons.dpatch -21-usb-export.dpatch diff --git a/debian/patches/21-usb-export.dpatch b/debian/patches/21-usb-export.dpatch deleted file mode 100755 index ab3184e7f..000000000 --- a/debian/patches/21-usb-export.dpatch +++ /dev/null @@ -1,23 +0,0 @@ -#! /bin/sh /usr/share/dpatch/dpatch-run -## 21-usb-export.dpatch by Michael Meskes <meskes@debian.org> -## -## All lines beginning with `## DP:' are a description of the patch. -## DP: Fix export/USB error - -@DPATCH@ - ---- virtualbox-ose/src/VBox/Main/ApplianceImpl.cpp (Revision 20513) -+++ virtualbox-ose/src/VBox/Main/ApplianceImpl.cpp (Revision 20514) -@@ -4508,8 +4508,10 @@ - - // this is more tricky so use the COM method - rc = COMGETTER(USBController)(pUsbController.asOutParam()); -- if (FAILED(rc)) throw rc; -- rc = pUsbController->COMGETTER(Enabled)(&fUSBEnabled); -+ if (FAILED(rc)) -+ fUSBEnabled = false; -+ else -+ rc = pUsbController->COMGETTER(Enabled)(&fUSBEnabled); - - pAudioAdapter = mAudioAdapter; - rc = pAudioAdapter->COMGETTER(Enabled)(&fAudioEnabled); |