diff options
author | Bastien Nocera <hadess@users.sourceforge.net> | 2003-04-02 12:28:08 +0000 |
---|---|---|
committer | Bastien Nocera <hadess@users.sourceforge.net> | 2003-04-02 12:28:08 +0000 |
commit | 638699bd214d9106f563ab182c1d63015a90c298 (patch) | |
tree | 4fa72d2fa1b181198fa5da864d572116b4cc2b02 /src/xine-engine/demux.c | |
parent | eadea3df5e92e85a06fd7a6209f204b8e0394e46 (diff) | |
download | xine-lib-638699bd214d9106f563ab182c1d63015a90c298.tar.gz xine-lib-638699bd214d9106f563ab182c1d63015a90c298.tar.bz2 |
- remove unneeded use of pthread_exit(NULL). We do not have any cleanup
handlers, so we can just use "return NULL" instead.
CVS patchset: 4533
CVS date: 2003/04/02 12:28:08
Diffstat (limited to 'src/xine-engine/demux.c')
-rw-r--r-- | src/xine-engine/demux.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/xine-engine/demux.c b/src/xine-engine/demux.c index 88c5515f5..5fd21ba41 100644 --- a/src/xine-engine/demux.c +++ b/src/xine-engine/demux.c @@ -256,7 +256,6 @@ static void *demux_loop (void *stream_gen) { pthread_mutex_unlock( &stream->demux_lock ); - pthread_exit(NULL); return NULL; } |