From 7d3ef37477208c289555948907495ca8239c03d7 Mon Sep 17 00:00:00 2001 From: Olle Johansson Date: Mon, 6 Mar 2006 09:43:59 +0000 Subject: [PATCH] Initialize variable (fix by Luigi Rizzo) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@11983 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- apps/app_voicemail.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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");