Joris Huizer : version/tests: Corrected memset placement.

Alexandre Julliard julliard at winehq.org
Wed Oct 8 08:33:11 CDT 2008


Module: wine
Branch: master
Commit: af086800372ad4d6839bedc6baa4ec7c775ef9c4
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=af086800372ad4d6839bedc6baa4ec7c775ef9c4

Author: Joris Huizer <joris_huizer at yahoo.com>
Date:   Tue Oct  7 15:30:11 2008 +0200

version/tests: Corrected memset placement.

---

 dlls/version/tests/install.c |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dlls/version/tests/install.c b/dlls/version/tests/install.c
index ec40d3e..6fc19bb 100644
--- a/dlls/version/tests/install.c
+++ b/dlls/version/tests/install.c
@@ -183,23 +183,23 @@ static void test_install_file(void)
     memset(tmpname,0,sizeof(tmpname));
     size = MAX_PATH;
     rc = VerInstallFileA(0x0, szSrcFileName, NULL, NULL, NULL, NULL, tmpname, &size);
-    memset(tmpname,0,sizeof(tmpname));
     ok (rc == 0x10000 && tmpname[0]==0," expected return 0x10000 and no tempname, got %08x/\'%s\'\n",rc,tmpname);
+    memset(tmpname,0,sizeof(tmpname));
     size = MAX_PATH;
     rc = VerInstallFileA(0x0, szSrcFileName, szDestFileName, NULL, NULL, NULL, tmpname, &size);
-    memset(tmpname,0,sizeof(tmpname));
     ok (rc == 0x10000 && tmpname[0]==0," expected return 0x10000 and no tempname, got %08x/\'%s\'\n",rc,tmpname);
+    memset(tmpname,0,sizeof(tmpname));
     size = MAX_PATH;
     rc = VerInstallFileA(0x0, szSrcFileName, szDestFileName, szSrcDir, NULL, NULL, tmpname, &size);
-    memset(tmpname,0,sizeof(tmpname));
     ok (rc == 0x10000 && tmpname[0]==0," expected return 0x10000 and no tempname, got %08x/\'%s\'\n",rc,tmpname);
 
     /* Source file does not exist*/
 
+    memset(tmpname,0,sizeof(tmpname));
     size = MAX_PATH;
     rc = VerInstallFileA(0x0, szSrcFileName, szDestFileName, szSrcDir, szDestDir, NULL, tmpname, &size);
-    memset(tmpname,0,sizeof(tmpname));
     ok (rc == 0x10000 && tmpname[0]==0," expected return 0x10000 and no tempname, got %08x/\'%s\'\n",rc,tmpname);
+    memset(tmpname,0,sizeof(tmpname));
     size = MAX_PATH;
     rc = VerInstallFileA(0x0, szSrcFileName, szDestFileName,  szSrcDir, szDestDir, szCurDir, tmpname, &size);
     ok (rc == 0x10000 && tmpname[0]==0," expected return 0x10000 and no tempname, got %08x/\'%s\'\n",rc,tmpname);




More information about the wine-cvs mailing list