summaryrefslogtreecommitdiff
path: root/store
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2004-12-23 10:33:14 +0000
committerVladimir Glazounov <vg@openoffice.org>2004-12-23 10:33:14 +0000
commit61f9f45abdac792e2eeb85102dad1d7a34a54f2a (patch)
tree783c37a4414b149e83548ea2bf5ea55d67e98ab6 /store
parent2792cd9b705368b0b185c5837b27eddc804b11be (diff)
INTEGRATION: CWS mhu05 (1.3.8); FILE MERGED
2004/12/09 18:03:25 mhu 1.3.8.1: #i38646# Disabled internal commit (sync) to disk (STORE_FEATURE_COMMIT). Improved propagation of errors from fsync() and close() calls.
Diffstat (limited to 'store')
-rw-r--r--store/source/store.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/store/source/store.cxx b/store/source/store.cxx
index 63e7918fd55e..b62f28b606b2 100644
--- a/store/source/store.cxx
+++ b/store/source/store.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: store.cxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: kz $ $Date: 2004-07-30 15:29:46 $
+ * last change: $Author: vg $ $Date: 2004-12-23 11:33:14 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -59,7 +59,7 @@
*
************************************************************************/
-#define _STORE_STORE_CXX_ "$Revision: 1.3 $"
+#define _STORE_STORE_CXX_ "$Revision: 1.4 $"
#ifndef _SAL_TYPES_H_
#include <sal/types.h>
@@ -246,9 +246,9 @@ storeError SAL_CALL store_closeFile (
if (!pManager)
return store_E_InvalidHandle;
- pManager->close();
+ storeError eErrCode = pManager->close();
pManager->release();
- return store_E_None;
+ return eErrCode;
}
/*