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
#endif
gethostname(host, sizeof(host)-1);
+ memset(&tm, 0, sizeof(tm));
+
if (strchr(srcemail, '@'))
ast_copy_string(who, srcemail, sizeof(who));
else
{
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);
}