diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/audio_out/audio_arts_out.c | 5 |
1 files changed, 4 insertions, 1 deletions
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); } |