winetest: Also abort while sending

André Hentschel nerv at dawncrow.de
Thu Jun 24 14:11:43 CDT 2010


---
 programs/winetest/send.c |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/programs/winetest/send.c b/programs/winetest/send.c
index c250424..11c9f33 100644
--- a/programs/winetest/send.c
+++ b/programs/winetest/send.c
@@ -177,6 +177,7 @@ send_file_direct (const char *name)
     report (R_PROGRESS, 2, filesize);
     total = 0;
     while (total < filesize && ReadFile( file, buffer, BUFLEN/2, &bytes_read, NULL )) {
+        if (aborting) goto abort2;
         if (!bytes_read) break;
         total += bytes_read;
         if (total > filesize) bytes_read -= total - filesize;
@@ -344,6 +345,7 @@ send_file_wininet (const char *name)
     report (R_PROGRESS, 2, filesize);
     total = 0;
     while (total < filesize && ReadFile( file, buffer, BUFLEN/2, &bytes_read, NULL )) {
+        if (aborting) goto done;
         if (!bytes_read) break;
         total += bytes_read;
         if (total > filesize) bytes_read -= total - filesize;
-- 

Best Regards, André Hentschel



More information about the wine-patches mailing list