summaryrefslogtreecommitdiffstats
path: root/truecrypt/build/truecrypt-7.0_umount.patch
diff options
context:
space:
mode:
author Eric Hameleers <alien@slackware.com>2010-07-21 17:25:11 +0000
committer Eric Hameleers <alien@slackware.com>2010-07-21 17:25:11 +0000
commitae2f9ecea84e043269841bf81ab335f9bc45ba3d (patch)
treea2dad430753a1e036b6dec9a71a35604c7af398a /truecrypt/build/truecrypt-7.0_umount.patch
parent6db2ce7a6726d1bb0465c710bfe02ed680ae4b29 (diff)
downloadasb-ae2f9ecea84e043269841bf81ab335f9bc45ba3d.tar.gz
asb-ae2f9ecea84e043269841bf81ab335f9bc45ba3d.tar.xz
Initial revision
Diffstat (limited to '')
-rw-r--r--truecrypt/build/truecrypt-7.0_umount.patch27
1 files changed, 27 insertions, 0 deletions
diff --git a/truecrypt/build/truecrypt-7.0_umount.patch b/truecrypt/build/truecrypt-7.0_umount.patch
new file mode 100644
index 00000000..7de2b346
--- /dev/null
+++ b/truecrypt/build/truecrypt-7.0_umount.patch
@@ -0,0 +1,27 @@
+diff -uar truecrypt-6.3a-source.orig/Core/Unix/Linux/CoreLinux.cpp truecrypt-6.3a-source/Core/Unix/Linux/CoreLinux.cpp
+--- truecrypt-6.3a-source.orig/Core/Unix/Linux/CoreLinux.cpp 2009-11-22 16:09:54.000000000 +0100
++++ truecrypt-6.3a-source/Core/Unix/Linux/CoreLinux.cpp 2010-04-04 16:47:42.000000000 +0200
+@@ -90,13 +90,23 @@
+ void CoreLinux::DetachLoopDevice (const DevicePath &devicePath) const
+ {
+ list <string> args;
++ list <string> args2;
+ args.push_back ("-d");
+ args.push_back (devicePath);
++ /* args2 needed to umount loop device before detaching it
++ * by Enrico Lo Tauro (neongen)
++ */
++ args2.push_back (devicePath);
+
+ for (int t = 0; true; t++)
+ {
+ try
+ {
++ try
++ {
++ Process::Execute ("umount", args2);
++ }
++ catch (ExecutedProcessFailed&) { }
+ Process::Execute ("losetup", args);
+ break;
+ }