From 4553ab9eab7b890b7fa3f9136e94aa24e9ed97b8 Mon Sep 17 00:00:00 2001 From: Joshua Colp <jcolp@digium.com> Date: Mon, 5 Feb 2007 17:06:56 +0000 Subject: [PATCH] Merged revisions 53152 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r53152 | file | 2007-02-05 11:06:18 -0600 (Mon, 05 Feb 2007) | 2 lines Ensure say_cfg is NULL when the module is loaded. (issue #8946 reported by junky) ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@53153 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- apps/app_playback.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/app_playback.c b/apps/app_playback.c index 7eeee9dd29..5c566fd935 100644 --- a/apps/app_playback.c +++ b/apps/app_playback.c @@ -68,7 +68,7 @@ static char *descrip = ; -static struct ast_config *say_cfg; +static struct ast_config *say_cfg = NULL; /* save the say' api calls. * The first entry is NULL if we have the standard source, * otherwise we are sourcing from here. -- GitLab