[Spice-devel] [spice-gtk v4 09/24] main: do not check for xfer-task errors

Victor Toso victortoso at redhat.com
Thu Jun 23 17:37:41 UTC 2016


file_xfer_flush_finish and file_xfer_data_flushed_cb are channel-main
function and should not check for SpiceFileTransferTask internal
errors.
---
 src/channel-main.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/channel-main.c b/src/channel-main.c
index be5a454..fef72cd 100644
--- a/src/channel-main.c
+++ b/src/channel-main.c
@@ -1893,7 +1893,7 @@ static void file_xfer_data_flushed_cb(GObject *source_object,
     GError *error = NULL;
 
     file_xfer_flush_finish(channel, res, &error);
-    if (error || self->error) {
+    if (error) {
         spice_file_transfer_task_completed(self, error);
         return;
     }
-- 
2.7.4



More information about the Spice-devel mailing list