From 12ed099f0752eb9937fd2c1d1c7e41f5b61b7672 Mon Sep 17 00:00:00 2001 From: Steve Murphy Date: Mon, 25 Sep 2006 14:52:28 +0000 Subject: [PATCH] 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 --- formats/format_ogg_vorbis.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/formats/format_ogg_vorbis.c b/formats/format_ogg_vorbis.c index d1122924ac..5fc17c3386 100644 --- a/formats/format_ogg_vorbis.c +++ b/formats/format_ogg_vorbis.c @@ -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;