[Spice-devel] [PATCH] worker: improve validation for update command
Frediano Ziglio
fziglio at redhat.com
Wed Dec 2 03:08:44 PST 2015
If surface_id is not valid we should still release resource allocated
by red_get_update_cmd and from the guest.
This to reduce leaks in case of a race or another error in the guest
driver.
Also not issue a warning on invalid surface number to avoid filling
log space unconditionally.
Signed-off-by: Frediano Ziglio <fziglio at redhat.com>
---
server/red_worker.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/server/red_worker.c b/server/red_worker.c
index ebb2bba..a68a552 100644
--- a/server/red_worker.c
+++ b/server/red_worker.c
@@ -591,10 +591,10 @@ static int red_process_commands(RedWorker *worker, uint32_t max_pipe_size, int *
}
if (!validate_surface(worker->display_channel, update.surface_id)) {
spice_warning("Invalid surface in QXL_CMD_UPDATE");
- break;
+ } else {
+ display_channel_draw(worker->display_channel, &update.area, update.surface_id);
+ worker->qxl->st->qif->notify_update(worker->qxl, update.update_id);
}
- display_channel_draw(worker->display_channel, &update.area, update.surface_id);
- worker->qxl->st->qif->notify_update(worker->qxl, update.update_id);
release_info_ext.group_id = ext_cmd.group_id;
release_info_ext.info = update.release_info;
worker->qxl->st->qif->release_resource(worker->qxl, release_info_ext);
--
2.4.3
More information about the Spice-devel
mailing list