mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-29 18:19:30 +00:00
fix setlanguage seg fault (bug #2641)
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/v1-0@4005 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
3
pbx.c
3
pbx.c
@@ -4381,7 +4381,8 @@ static int pbx_builtin_answer(struct ast_channel *chan, void *data)
|
||||
static int pbx_builtin_setlanguage(struct ast_channel *chan, void *data)
|
||||
{
|
||||
/* Copy the language as specified */
|
||||
strncpy(chan->language, (char *)data, sizeof(chan->language)-1);
|
||||
if (data)
|
||||
strncpy(chan->language, (char *)data, sizeof(chan->language)-1);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user