aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/midpath/files/fix-openfile.patch
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/midpath/files/fix-openfile.patch')
-rw-r--r--recipes/midpath/files/fix-openfile.patch22
1 files changed, 22 insertions, 0 deletions
diff --git a/recipes/midpath/files/fix-openfile.patch b/recipes/midpath/files/fix-openfile.patch
new file mode 100644
index 0000000000..df677e1011
--- /dev/null
+++ b/recipes/midpath/files/fix-openfile.patch
@@ -0,0 +1,22 @@
+Index: midpath-0.3rc2/components/core/src/org/thenesis/midpath/io/backend/j2se/FileHandlerImpl.java
+===================================================================
+--- midpath-0.3rc2.orig/components/core/src/org/thenesis/midpath/io/backend/j2se/FileHandlerImpl.java 2008-05-19 13:56:18.000000000 +0200
++++ midpath-0.3rc2/components/core/src/org/thenesis/midpath/io/backend/j2se/FileHandlerImpl.java 2008-12-17 07:08:54.000000000 +0100
+@@ -181,10 +181,14 @@
+
+ public void openForRead() throws IOException {
+ if (randomAccessFile == null) {
+- //stream = new FileRandomAccessStream(file);
+- randomAccessFile = new RandomAccessFile(file, "rws");
++ // Try to get maximum rights to avoid closing the stream if openForWrite is called next
++ if (file.canWrite()) {
++ randomAccessFile = new RandomAccessFile(file, "rws");
++ } else {
++ randomAccessFile = new RandomAccessFile(file, "r");
++ }
+ }
+- }
++ }
+
+ public void openForWrite() throws IOException {
+ if (randomAccessFile == null) {