qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PULL 03/33] raw-win32.c: Fix incorrect handling behaviour


From: Kevin Wolf
Subject: [Qemu-devel] [PULL 03/33] raw-win32.c: Fix incorrect handling behaviour of small block files
Date: Fri, 13 Sep 2013 13:50:33 +0200

From: Tal Kain <address@hidden>

It is a valid case that the read data's size is smaller than the
requested size since there could be files that are smaller than
the minimum block size (For ex. when a VMDK disk descriptor file)

Signed-off-by: Tal Kain <address@hidden>
Signed-off-by: Kevin Wolf <address@hidden>
---
 block/raw-win32.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/block/raw-win32.c b/block/raw-win32.c
index d2d2d9f..ff3c5ea 100644
--- a/block/raw-win32.c
+++ b/block/raw-win32.c
@@ -85,6 +85,7 @@ static size_t handle_aiocb_rw(RawWin32AIOData *aiocb)
             ret_count = 0;
         }
         if (ret_count != len) {
+            offset += ret_count;
             break;
         }
         offset += len;
-- 
1.8.1.4




reply via email to

[Prev in Thread] Current Thread [Next in Thread]