Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Common/StdOutStream.h')
-rwxr-xr-xCommon/StdOutStream.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Common/StdOutStream.h b/Common/StdOutStream.h
index e8aba74a..a3b11979 100755
--- a/Common/StdOutStream.h
+++ b/Common/StdOutStream.h
@@ -12,7 +12,7 @@ class CStdOutStream
bool _streamIsOpen;
FILE *_stream;
public:
- CStdOutStream (): _streamIsOpen(false) {};
+ CStdOutStream (): _streamIsOpen(false), _stream(0) {};
CStdOutStream (FILE *stream): _streamIsOpen(false), _stream(stream) {};
~CStdOutStream ();
bool Open(const char *fileName);