diff options
author | Max Kellermann <max@duempel.org> | 2014-05-11 16:59:19 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-05-11 17:12:50 +0200 |
commit | 82337dec44347017ca04fe975e85e6d9e4edb635 (patch) | |
tree | 308036d4a7abbd2bb04ed472dc1fbacdc2587871 /test/dump_text_file.cxx | |
parent | f1d07002521a4a98acf130127cf42aef20a5e258 (diff) |
InputStream: add virtual destructor
Replaces the method Close().
Diffstat (limited to 'test/dump_text_file.cxx')
-rw-r--r-- | test/dump_text_file.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/dump_text_file.cxx b/test/dump_text_file.cxx index a2fc10b3f..79b402b5a 100644 --- a/test/dump_text_file.cxx +++ b/test/dump_text_file.cxx @@ -112,7 +112,7 @@ int main(int argc, char **argv) InputStream *is = InputStream::OpenReady(argv[1], mutex, cond, error); if (is != NULL) { ret = dump_input_stream(*is); - is->Close(); + delete is; } else { if (error.IsDefined()) LogError(error); |