summaryrefslogtreecommitdiff
path: root/say.c
diff options
context:
space:
mode:
authorOlle Johansson <oej@edvina.net>2006-03-13 09:02:55 +0000
committerOlle Johansson <oej@edvina.net>2006-03-13 09:02:55 +0000
commitf942e6365c68cdca6f0497bf27d3e3ea21ffecf2 (patch)
tree48ff64c7d339370b059aaa01504b1abafdc7c8e2 /say.c
parentadef31698f99313e0194d69980c7e1aef8ced6d3 (diff)
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
Diffstat (limited to 'say.c')
-rw-r--r--say.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/say.c b/say.c
index ff881c787..4f8f380f8 100644
--- a/say.c
+++ b/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 */