From patchwork Fri Sep 21 08:47:27 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [33/41] savevm: make qemu_fill_buffer() be consistent Date: Thu, 20 Sep 2012 22:47:27 -0000 From: Juan Quintela X-Patchwork-Id: 185636 Message-Id: <1348217255-22441-34-git-send-email-quintela@redhat.com> To: qemu-devel@nongnu.org It was setting last_error directly once, and with the helper the other time. Signed-off-by: Juan Quintela Reviewed-by: Paolo Bonzini --- savevm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/savevm.c b/savevm.c index 8ddb9d5..4e4aa3c 100644 --- a/savevm.c +++ b/savevm.c @@ -501,7 +501,7 @@ static void qemu_fill_buffer(QEMUFile *f) f->buf_size += len; f->buf_offset += len; } else if (len == 0) { - f->last_error = -EIO; + qemu_file_set_error(f, -EIO); } else if (len != -EAGAIN) qemu_file_set_error(f, len); }