summaryrefslogtreecommitdiff
path: root/src/xine-engine/audio_decoder.c
diff options
context:
space:
mode:
authorMichael Roitzsch <mroi@users.sourceforge.net>2003-06-22 17:10:41 +0000
committerMichael Roitzsch <mroi@users.sourceforge.net>2003-06-22 17:10:41 +0000
commit3dc9fe628d0832bf2866afd9dc83e27ee85435e5 (patch)
tree7fc76f3b9a4c1e0cfc5eb73750927291ce52a493 /src/xine-engine/audio_decoder.c
parentcb110558df923589ef7faf98b6647cb39c55c241 (diff)
downloadxine-lib-3dc9fe628d0832bf2866afd9dc83e27ee85435e5.tar.gz
xine-lib-3dc9fe628d0832bf2866afd9dc83e27ee85435e5.tar.bz2
some additional pthread_*_destroy() calls
(based on the implementation, this might fix memleaks on some platforms, although I doubt that this is the case here) CVS patchset: 5091 CVS date: 2003/06/22 17:10:41
Diffstat (limited to 'src/xine-engine/audio_decoder.c')
-rw-r--r--src/xine-engine/audio_decoder.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/xine-engine/audio_decoder.c b/src/xine-engine/audio_decoder.c
index dcab13602..869b92c13 100644
--- a/src/xine-engine/audio_decoder.c
+++ b/src/xine-engine/audio_decoder.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: audio_decoder.c,v 1.106 2003/04/02 12:28:08 hadess Exp $
+ * $Id: audio_decoder.c,v 1.107 2003/06/22 17:10:41 mroi Exp $
*
*
* functions that implement audio decoding
@@ -390,6 +390,8 @@ void audio_decoder_init (xine_stream_t *stream) {
strerror(err));
abort();
}
+
+ pthread_attr_destroy(&pth_attrs);
}
void audio_decoder_shutdown (xine_stream_t *stream) {