summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--unotools/source/ucbhelper/tempfile.cxx8
1 files changed, 5 insertions, 3 deletions
diff --git a/unotools/source/ucbhelper/tempfile.cxx b/unotools/source/ucbhelper/tempfile.cxx
index 9585639c67e0..4821714576cf 100644
--- a/unotools/source/ucbhelper/tempfile.cxx
+++ b/unotools/source/ucbhelper/tempfile.cxx
@@ -54,9 +54,11 @@ struct TempFile_Impl
SvStream* pStream;
bool bIsDirectory;
- TempFile_Impl()
- : pStream(0)
- {}
+ TempFile_Impl()
+ : pStream(0)
+ , bIsDirectory(false)
+ {
+ }
};
OUString getParentName( const OUString& aFileName )