summaryrefslogtreecommitdiffstats
path: root/client
diff options
context:
space:
mode:
Diffstat (limited to 'client')
-rw-r--r--client/display_channel.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/client/display_channel.cpp b/client/display_channel.cpp
index 1bf0744b..e66f845e 100644
--- a/client/display_channel.cpp
+++ b/client/display_channel.cpp
@@ -1291,9 +1291,8 @@ void DisplayChannel::set_clip_rects(const SpiceClip& clip, uint32_t& num_clip_re
{
switch (clip.type) {
case SPICE_CLIP_TYPE_RECTS: {
- uint32_t* n = (uint32_t*)SPICE_GET_ADDRESS(clip.data);
- num_clip_rects = *n;
- clip_rects = (SpiceRect *)(n + 1);
+ num_clip_rects = clip.rects->num_rects;
+ clip_rects = clip.rects->rects;
break;
}
case SPICE_CLIP_TYPE_NONE: