From f942e6365c68cdca6f0497bf27d3e3ea21ffecf2 Mon Sep 17 00:00:00 2001
From: Olle Johansson <oej@edvina.net>
Date: Mon, 13 Mar 2006 09:02:55 +0000
Subject: [PATCH] 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
---
 say.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/say.c b/say.c
index ff881c7870..4f8f380f82 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 */
-- 
GitLab