From 6d0e0ed2901a36739b6cdd23b6b713a5aece1bf4 Mon Sep 17 00:00:00 2001 From: Eric Hameleers Date: Tue, 27 Oct 2009 09:46:11 +0000 Subject: Initial revision --- truecrypt/build/truecrypt-6.3_umount.patch | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 truecrypt/build/truecrypt-6.3_umount.patch (limited to 'truecrypt') diff --git a/truecrypt/build/truecrypt-6.3_umount.patch b/truecrypt/build/truecrypt-6.3_umount.patch new file mode 100644 index 00000000..f68e7fb6 --- /dev/null +++ b/truecrypt/build/truecrypt-6.3_umount.patch @@ -0,0 +1,27 @@ +diff -uarN truecrypt-6.0a-source.orig/Core/Unix/Linux/CoreLinux.cpp truecrypt-6.0a-source/Core/Unix/Linux/CoreLinux.cpp +--- truecrypt-6.0a-source.orig/Core/Unix/Linux/CoreLinux.cpp 2008-07-04 21:23:54.000000000 +0200 ++++ truecrypt-6.0a-source/Core/Unix/Linux/CoreLinux.cpp 2008-07-10 02:01:20.000000000 +0200 +@@ -69,13 +69,23 @@ + void CoreLinux::DetachLoopDevice (const DevicePath &devicePath) const + { + list args; ++ list 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; + } -- cgit v1.2.3