mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-05 20:20:07 +00:00
Issue 6710: saydate crash. Fix by Luigi Rizzo. Thanks!
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@12740 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
4
say.c
4
say.c
@@ -2949,6 +2949,10 @@ int ast_say_date_pt(struct ast_channel *chan, time_t t, const char *ints, const
|
||||
|
||||
int ast_say_date_with_format(struct ast_channel *chan, time_t time, const char *ints, const char *lang, const char *format, const char *timezone)
|
||||
{
|
||||
/* If no format is given, use default english format */
|
||||
if (format == NULL)
|
||||
format = "ABdY 'digits/at' IMp";
|
||||
|
||||
if (!strcasecmp(lang, "en") ) { /* English syntax */
|
||||
return(ast_say_date_with_format_en(chan, time, ints, lang, format, timezone));
|
||||
} else if (!strcasecmp(lang, "da") ) { /* Danish syntax */
|
||||
|
Reference in New Issue
Block a user