From: Olle Johansson Date: Mon, 6 Mar 2006 09:43:59 +0000 (+0000) Subject: Initialize variable (fix by Luigi Rizzo) X-Git-Tag: 1.4.0-beta1~2485 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7d3ef37477208c289555948907495ca8239c03d7;p=thirdparty%2Fasterisk.git Initialize variable (fix by Luigi Rizzo) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@11983 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c index 3c2635b7c3..168c96895c 100644 --- a/apps/app_voicemail.c +++ b/apps/app_voicemail.c @@ -4508,7 +4508,7 @@ static int get_lastdigits(int num) static int vm_intro_ru(struct ast_channel *chan,struct vm_state *vms) { int res; - int lastnum; + int lastnum = 0; int dcnum; res = ast_play_and_wait(chan, "vm-youhave");