diff options
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | src/audio_out/audio_arts_out.c | 5 |
2 files changed, 5 insertions, 1 deletions
@@ -31,6 +31,7 @@ xine-lib (1-rc4) * new MOD demuxer * new, safer method for on-the-fly rewiring of post plugins * add iso-8859-9 and iso-8859-15 codepages into xine fonts + * work around freezing with arts on BSD xine-lib (1-rc3a) * new subtitle formats: jacobsub, subviewer 2.0, subrip 0.9 diff --git a/src/audio_out/audio_arts_out.c b/src/audio_out/audio_arts_out.c index 22f7ea3c2..6c209d925 100644 --- a/src/audio_out/audio_arts_out.c +++ b/src/audio_out/audio_arts_out.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_arts_out.c,v 1.24 2003/12/20 19:51:48 manfredtremmel Exp $ + * $Id: audio_arts_out.c,v 1.25 2004/02/15 19:29:47 mroi Exp $ */ #ifndef __sun /* _XOPEN_SOURCE causes build prob's on sunos */ @@ -227,7 +227,10 @@ static void ao_arts_exit(ao_driver_t *this_gen) arts_driver_t *this = (arts_driver_t *) this_gen; ao_arts_close(this_gen); + /* FIXME: arts_free() freezes on BSD, so don't use it there */ +#if !defined(__OpenBSD__) && !defined (__FreeBSD__) && !defined(__NetBSD__) arts_free(); +#endif free (this); } |