From 08fdb4646ecad32b0acb3c579f8ae7cb77429ffb Mon Sep 17 00:00:00 2001 From: Richard Mudgett Date: Tue, 5 Feb 2013 18:17:29 +0000 Subject: Because the compiler can check types with a struct copy and memcpy() cannot. ........ Merged revisions 380856 from http://svn.asterisk.org/svn/asterisk/branches/11 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@380858 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- apps/confbridge/conf_config_parser.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'apps') diff --git a/apps/confbridge/conf_config_parser.c b/apps/confbridge/conf_config_parser.c index dfedffe97..c915b184c 100644 --- a/apps/confbridge/conf_config_parser.c +++ b/apps/confbridge/conf_config_parser.c @@ -1355,7 +1355,7 @@ error: static void conf_user_profile_copy(struct user_profile *dst, struct user_profile *src) { - memcpy(dst, src, sizeof(*dst)); + *dst = *src; } const struct user_profile *conf_find_user_profile(struct ast_channel *chan, const char *user_profile_name, struct user_profile *result) -- cgit v1.2.3