[Spice-devel] [PATCH 4/6] let compiler manage the copy in a more typesafe way

Frediano Ziglio fziglio at redhat.com
Fri May 6 09:34:51 UTC 2016


Do not use memcpy but just copy the data

Signed-off-by: Frediano Ziglio <fziglio at redhat.com>
---
 server/red-channel.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/server/red-channel.c b/server/red-channel.c
index c1e3dad..4be815d 100644
--- a/server/red-channel.c
+++ b/server/red-channel.c
@@ -1050,7 +1050,7 @@ RedChannel *red_channel_create(int size,
     channel->refs = 1;
     channel->handle_acks = handle_acks;
     channel->migration_flags = migration_flags;
-    memcpy(&channel->channel_cbs, channel_cbs, sizeof(ChannelCbs));
+    channel->channel_cbs = *channel_cbs;
 
     channel->reds = reds;
     channel->core = core;
-- 
2.5.5



More information about the Spice-devel mailing list