From f498599e56a06be01ac98835cb39d53be5a3e077 Mon Sep 17 00:00:00 2001 From: Russell Bryant Date: Mon, 17 Sep 2007 20:10:10 +0000 Subject: [PATCH] Merged revisions 82644 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r82644 | russell | 2007-09-17 15:00:32 -0500 (Mon, 17 Sep 2007) | 6 lines Initialize some memory to fix crashes when leaving voicemail. This problem was fixed by running Asterisk under valgrind. (closes issue #10746, reported by arcivanov, patched by me) *** IMPORTANT NOTE: We need to check to see if this same bug exists elsewhere. ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@82660 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- apps/app_voicemail.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c index 9bb3e9f8ef..3a99622c33 100644 --- a/apps/app_voicemail.c +++ b/apps/app_voicemail.c @@ -1958,6 +1958,8 @@ static void make_email_file(FILE *p, char *srcemail, struct ast_vm_user *vmu, in #endif gethostname(host, sizeof(host)-1); + memset(&tm, 0, sizeof(tm)); + if (strchr(srcemail, '@')) ast_copy_string(who, srcemail, sizeof(who)); else @@ -2235,7 +2237,10 @@ static int get_date(char *s, int len) { struct ast_tm tm; struct timeval t = ast_tvnow(); + + memset(&tm, 0, sizeof(tm)); ast_localtime(&t, &tm, NULL); + return ast_strftime(s, len, "%a %b %e %r %Z %Y", &tm); }