From 470f688a28975e63c0df4ffdb8a0ac490f4cf3d9 Mon Sep 17 00:00:00 2001 From: kpfleming Date: Wed, 25 Oct 2006 14:44:50 +0000 Subject: Merged revisions 46200 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r46200 | kpfleming | 2006-10-25 09:32:08 -0500 (Wed, 25 Oct 2006) | 2 lines apparently developers are still not aware that they should be use ast_copy_string instead of strncpy... fix up many more users, and fix some bugs in the process ........ git-svn-id: http://svn.digium.com/svn/asterisk/trunk@46201 f38db490-d61c-443f-a65b-d21fe96a405b --- apps/app_record.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'apps/app_record.c') diff --git a/apps/app_record.c b/apps/app_record.c index 924e6ba2d..b38944aef 100644 --- a/apps/app_record.c +++ b/apps/app_record.c @@ -212,7 +212,7 @@ static int record_exec(struct ast_channel *chan, void *data) } while (ast_fileexists(tmp, ext, chan->language) > 0); pbx_builtin_setvar_helper(chan, "RECORDED_FILE", tmp); } else - strncpy(tmp, filename, sizeof(tmp)-1); + ast_copy_string(tmp, filename, sizeof(tmp)); /* end of routine mentioned */ -- cgit v1.2.3