From: Frediano Ziglio <fziglio@xxxxxxxxxx> Do not use memcpy but just copy the data Signed-off-by: Frediano Ziglio <fziglio@xxxxxxxxxx> --- 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 66aed41..c88828c 100644 --- a/server/red-channel.c +++ b/server/red-channel.c @@ -1049,7 +1049,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.4.11 _______________________________________________ Spice-devel mailing list Spice-devel@xxxxxxxxxxxxxxxxxxxxx https://lists.freedesktop.org/mailman/listinfo/spice-devel