diff options
author | deva <deva> | 2005-05-23 17:59:49 +0000 |
---|---|---|
committer | deva <deva> | 2005-05-23 17:59:49 +0000 |
commit | 0ee11d2d10133f77d69060a58b9c3b38c8ecc70a (patch) | |
tree | 97ab65312632139705156e1b9ae5ced68d7149d2 | |
parent | a9b9e720d52e167c6aa8a2741ec2dd380f2e48c0 (diff) |
Fixed delete of NULL input queue
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | src/mov_encoder_thread.cc | 5 |
2 files changed, 12 insertions, 1 deletions
@@ -1,6 +1,14 @@ +-*- Text -*- +======================================= Changelog for MIaV ======================================= +May 2005 - MIaV version 0.2.3 +New Features: + - +Bug Fixes: + - Free of NULL input queue removed. + May 22 2005 - MIaV version 0.2.2 New Features: - Added multithread encoding to the server. diff --git a/src/mov_encoder_thread.cc b/src/mov_encoder_thread.cc index d95961d..422efca 100644 --- a/src/mov_encoder_thread.cc +++ b/src/mov_encoder_thread.cc @@ -31,6 +31,9 @@ /* * $Log$ + * Revision 1.8 2005/05/23 17:59:49 deva + * Fixed delete of NULL input queue + * * Revision 1.7 2005/05/22 15:49:22 deva * Added multithreaded encoding support. * @@ -99,7 +102,7 @@ MovEncoderThread::MovEncoderThread(const char *filename) MovEncoderThread::~MovEncoderThread() { // These should not be deleted here... its done elsewhere. - inputqueue = NULL; + // inputqueue = NULL; sem_post(&out_sem); |