Wrong member variable initialization resulting in spontaneous segfaults on Windows.

This commit is contained in:
Moritz Bunkus 2004-01-05 21:21:52 +00:00
parent fe708d4615
commit 7b01208b2e
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2004-01-05 Moritz Bunkus <moritz@bunkus.org>
* mkvmerge: bug fix: The I/O classes were not initialized
correctly on Windows resulting in spontaneous strange error
messages, especially when muxing VobSubs.
2004-01-03 Moritz Bunkus <moritz@bunkus.org>
* mkvmerge: bug fix: For some special atom sizes in Quicktime and

View File

@ -160,8 +160,8 @@ mm_io_c::mm_io_c(const char *path, const open_mode mode) {
}
mm_io_c::mm_io_c() {
file_name = NULL;
file = NULL;
safefree(file_name);
}
mm_io_c::~mm_io_c() {