diff options
author | František Dvořák <valtri@users.sourceforge.net> | 2006-09-21 15:01:08 +0000 |
---|---|---|
committer | František Dvořák <valtri@users.sourceforge.net> | 2006-09-21 15:01:08 +0000 |
commit | 2127ad76fc45c2d2f575791842450bfcf3c5aa68 (patch) | |
tree | f04f639d9e0084c3ff68288cdc54c8522080a71f /src | |
parent | 765e613246a2f8367f30bbafaacf2aeebc7a5723 (diff) | |
download | xine-lib-2127ad76fc45c2d2f575791842450bfcf3c5aa68.tar.gz xine-lib-2127ad76fc45c2d2f575791842450bfcf3c5aa68.tar.bz2 |
Build fixes (other version of external libcdio workaround, typo in DX aout).
CVS patchset: 8273
CVS date: 2006/09/21 15:01:08
Diffstat (limited to 'src')
-rwxr-xr-x | src/audio_out/audio_directx_out.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/audio_out/audio_directx_out.c b/src/audio_out/audio_directx_out.c index 54d4d99fd..d2147ac52 100755 --- a/src/audio_out/audio_directx_out.c +++ b/src/audio_out/audio_directx_out.c @@ -20,7 +20,7 @@ * audio_directx_out.c, direct sound audio output plugin for xine * by Matthew Grooms <elon@altavista.com> * - * $Id: audio_directx_out.c,v 1.16 2006/07/16 16:18:09 dsalt Exp $ + * $Id: audio_directx_out.c,v 1.17 2006/09/21 15:01:08 valtri Exp $ */ /* @@ -844,7 +844,7 @@ static void *init_class (xine_t *xine, void *data) { * from this point on, nothing should go wrong anymore */ audiox = (audiox_class_t *) xine_xmalloc (sizeof (audiox_class_t)); - if (!ao_directx) + if (!audiox) return NULL; audiox->driver_class.open_plugin = open_plugin; |