From: Kevin P. Fleming Date: Thu, 5 Jan 2006 20:53:21 +0000 (+0000) Subject: Merged revisions 7819 via svnmerge from X-Git-Tag: 1.4.0-beta1~3062 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b157f30e5125795aba2c26661a96488a6608ac42;p=thirdparty%2Fasterisk.git Merged revisions 7819 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.2 ........ r7819 | kpfleming | 2006-01-05 14:52:38 -0600 (Thu, 05 Jan 2006) | 2 lines ensure that variable is initialized ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@7820 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/formats/format_pcm.c b/formats/format_pcm.c index 1de3d166f7..289038ced5 100644 --- a/formats/format_pcm.c +++ b/formats/format_pcm.c @@ -176,7 +176,7 @@ static int pcm_write(struct ast_filestream *fs, struct ast_frame *f) static int pcm_seek(struct ast_filestream *fs, long sample_offset, int whence) { - long cur, max, offset; + long cur, max, offset = 0; cur = ftell(fs->f); fseek(fs->f, 0, SEEK_END); diff --git a/formats/format_pcm_alaw.c b/formats/format_pcm_alaw.c index a738cf07b0..13d7c174a8 100644 --- a/formats/format_pcm_alaw.c +++ b/formats/format_pcm_alaw.c @@ -251,7 +251,7 @@ static int pcm_write(struct ast_filestream *fs, struct ast_frame *f) static int pcm_seek(struct ast_filestream *fs, long sample_offset, int whence) { - long cur, max, offset; + long cur, max, offset = 0; cur = ftell(fs->f); fseek(fs->f, 0, SEEK_END);