[Spice-devel] [PATCH spice-server] Avoid client to set too much surfaces

Frediano Ziglio fziglio at redhat.com
Thu Oct 20 11:36:50 UTC 2016


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

diff --git a/server/display-channel.c b/server/display-channel.c
index 69edd35..0b8d6b5 100644
--- a/server/display-channel.c
+++ b/server/display-channel.c
@@ -1946,7 +1946,7 @@ DisplayChannel* display_channel_new(RedsState *reds,
 #endif
     image_encoder_shared_init(&display->priv->encoder_shared_data);
 
-    display->priv->n_surfaces = n_surfaces;
+    display->priv->n_surfaces = MIN(n_surfaces, NUM_SURFACES);
     display->priv->renderer = RED_RENDERER_INVALID;
 
     ring_init(&display->priv->current_list);
-- 
2.7.4



More information about the Spice-devel mailing list