diff options
author | Kohei Yoshida <kohei.yoshida@collabora.com> | 2017-01-13 20:47:46 -0500 |
---|---|---|
committer | Kohei Yoshida <libreoffice@kohei.us> | 2017-01-14 17:30:30 +0000 |
commit | 4ae705d02df0ddf75b97d0e94add6994626f487e (patch) | |
tree | 019b0b47b2d777a83c4996ffec2022384ed72755 /include/comphelper | |
parent | efce216ca5d2b852c9fccc52ee68d1e27279d900 (diff) |
tdf#97597: Ensure that each parsing thread has its own buffer.
Change-Id: I93077f954a49b3922930e4fc86c80228be0f4dd2
Reviewed-on: https://gerrit.libreoffice.org/33069
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Kohei Yoshida <libreoffice@kohei.us>
Diffstat (limited to 'include/comphelper')
-rw-r--r-- | include/comphelper/storagehelper.hxx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/include/comphelper/storagehelper.hxx b/include/comphelper/storagehelper.hxx index d5655d492f75..67481985d00e 100644 --- a/include/comphelper/storagehelper.hxx +++ b/include/comphelper/storagehelper.hxx @@ -154,7 +154,8 @@ public: const css::uno::Reference < css::io::XInputStream >& xStream, const css::uno::Reference< css::uno::XComponentContext >& rxContext = css::uno::Reference< css::uno::XComponentContext >(), - bool bRepairStorage = false ) + bool bRepairStorage = false, + bool bUseBufferedStream = false ) throw ( css::uno::Exception ); static css::uno::Reference< css::embed::XStorage > @@ -164,7 +165,8 @@ public: sal_Int32 nStorageMode = css::embed::ElementModes::READWRITE, const css::uno::Reference< css::uno::XComponentContext >& rxContext = css::uno::Reference< css::uno::XComponentContext >(), - bool bRepairStorage = false ) + bool bRepairStorage = false, + bool bUseBufferedStream = false ) throw ( css::uno::Exception ); static css::uno::Sequence< css::beans::NamedValue > |