From: Jason Parker Date: Tue, 19 Feb 2008 22:23:04 +0000 (+0000) Subject: Maybe we should set the value before we test it? Fixes an issue people have been... X-Git-Tag: 1.6.0-beta4~17 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=59bdc278beaadbdff68249fc70cc7970dd7ef640;p=thirdparty%2Fasterisk.git Maybe we should set the value before we test it? Fixes an issue people have been seeing (unreported?) with file playback not working. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@103831 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/main/channel.c b/main/channel.c index 830775fd87..cece084fbd 100644 --- a/main/channel.c +++ b/main/channel.c @@ -3095,13 +3095,14 @@ static int set_format(struct ast_channel *chan, int fmt, int *rawformat, int *fo int native; int res; + native = chan->nativeformats; + if (!fmt || !native) /* No audio requested */ return 0; /* Let's try a call without any sounds (video, text) */ /* Make sure we only consider audio */ fmt &= AST_FORMAT_AUDIO_MASK; - native = chan->nativeformats; /* Find a translation path from the native format to one of the desired formats */ if (!direction) /* reading */