summaryrefslogtreecommitdiff
path: root/src/xine-engine/demux.c
diff options
context:
space:
mode:
authorBastien Nocera <hadess@users.sourceforge.net>2003-04-02 12:28:08 +0000
committerBastien Nocera <hadess@users.sourceforge.net>2003-04-02 12:28:08 +0000
commit638699bd214d9106f563ab182c1d63015a90c298 (patch)
tree4fa72d2fa1b181198fa5da864d572116b4cc2b02 /src/xine-engine/demux.c
parenteadea3df5e92e85a06fd7a6209f204b8e0394e46 (diff)
downloadxine-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.c1
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;
}