[PATCH] urlmon/tests: Fix a couple of allocations.

Zebediah Figura z.figura12 at gmail.com
Mon Feb 5 18:40:14 CST 2018


Signed-off-by: Zebediah Figura <z.figura12 at gmail.com>
---
This should fix an intermittent test failure.

 dlls/urlmon/tests/misc.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/urlmon/tests/misc.c b/dlls/urlmon/tests/misc.c
index dc8b179..c99b4d9 100644
--- a/dlls/urlmon/tests/misc.c
+++ b/dlls/urlmon/tests/misc.c
@@ -2336,7 +2336,7 @@ static void test_bsc_marshaling(void)
 
     rem_bindinfo.stgmedData.tymed = TYMED_HGLOBAL;
 
-    buf = GlobalAlloc(0, sizeof(5));
+    buf = GlobalAlloc(0, 5);
     strcpy(buf, "test");
     rem_bindinfo.stgmedData.u.hGlobal = buf;
     rem_bindinfo.cbstgmedData = 5;
@@ -2553,7 +2553,7 @@ static void test_bsc_marshaling(void)
 
         rem_bindinfo.stgmedData.tymed = TYMED_HGLOBAL;
 
-        buf = GlobalAlloc(0, sizeof(5));
+        buf = GlobalAlloc(0, 5);
         strcpy(buf, "test");
         rem_bindinfo.stgmedData.u.hGlobal = buf;
         rem_bindinfo.cbstgmedData = 5;
-- 
2.7.4




More information about the wine-devel mailing list