summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYonit Halperin <yhalperi@redhat.com>2012-08-25 23:20:17 +0300
committerMarc-André Lureau <marcandre.lureau@redhat.com>2012-08-28 18:36:28 +0200
commitf645e132a4f0d465cb8ae1e680b5eb61bd98187c (patch)
tree86f0431da9dbddf262f3325b1afdb0009fb38d48
parent87f956ae3010a814473968e0cba6f8d7df5c2cd3 (diff)
downloadspice-gtk-f645e132a4f0d465cb8ae1e680b5eb61bd98187c.tar.gz
spice-gtk-f645e132a4f0d465cb8ae1e680b5eb61bd98187c.tar.xz
spice-gtk-f645e132a4f0d465cb8ae1e680b5eb61bd98187c.zip
channel-base: remove bad check of SpiceMsgWaitForChannels validity
SpiceMsgWaitForChannels is not packed. Comparing the original msg size to SpiceMsgWaitForChannels is wrong.
-rw-r--r--gtk/channel-base.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/gtk/channel-base.c b/gtk/channel-base.c
index cc4d242..2968f42 100644
--- a/gtk/channel-base.c
+++ b/gtk/channel-base.c
@@ -120,9 +120,6 @@ void spice_channel_handle_wait_for_channels(SpiceChannel *channel, SpiceMsgIn *i
SpiceMsgWaitForChannels *wfc = spice_msg_in_parsed(in);
int i;
- g_return_if_fail(spice_header_get_msg_size(in->header, channel->priv->use_mini_header) >=
- sizeof(*wfc) + wfc->wait_count * sizeof(wfc->wait_list[0]));
-
for (i = 0; i < wfc->wait_count; ++i) {
WaitForChannelData data = {
.wait = wfc->wait_list + i,