diff options
author | Yonit Halperin <yhalperi@redhat.com> | 2012-08-25 23:20:17 +0300 |
---|---|---|
committer | Marc-André Lureau <marcandre.lureau@redhat.com> | 2012-08-28 18:36:28 +0200 |
commit | f645e132a4f0d465cb8ae1e680b5eb61bd98187c (patch) | |
tree | 86f0431da9dbddf262f3325b1afdb0009fb38d48 | |
parent | 87f956ae3010a814473968e0cba6f8d7df5c2cd3 (diff) |
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.c | 3 |
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, |