This tiny fix prevents asterisk from crashing if trying to play an OGG moh file.

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@43605 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Steve Murphy
2006-09-25 14:52:28 +00:00
parent 4b81fe1d28
commit 12ed099f07

View File

@@ -440,12 +440,13 @@ static struct ast_frame *ogg_vorbis_read(struct ast_filestream *fs,
int samples_in;
int samples_out = 0;
struct vorbis_desc *s = (struct vorbis_desc *)fs->private;
short *buf = (short *)(fs->fr.data); /* SLIN data buffer */
short *buf; /* SLIN data buffer */
fs->fr.frametype = AST_FRAME_VOICE;
fs->fr.subclass = AST_FORMAT_SLINEAR;
fs->fr.mallocd = 0;
AST_FRAME_SET_BUFFER(&fs->fr, fs->buf, AST_FRIENDLY_OFFSET, BUF_SIZE);
buf = (short *)(fs->fr.data); /* SLIN data buffer */
while (samples_out != SAMPLES_MAX) {
float **pcm;