shdocvw/tests: don't check return values inside of if(0) (LLVM/Clang)

Austin English austinenglish at gmail.com
Wed Feb 9 15:43:44 CST 2011


-- 
-Austin
-------------- next part --------------
diff --git a/dlls/shdocvw/tests/shdocvw.c b/dlls/shdocvw/tests/shdocvw.c
index 17ea8d0..e7c904b 100644
--- a/dlls/shdocvw/tests/shdocvw.c
+++ b/dlls/shdocvw/tests/shdocvw.c
@@ -268,7 +268,7 @@ static void test_ParseURLFromOutsideSourceA(void)
 
         if (0) {
             /* that test crash on native shdocvw */
-            res = pParseURLFromOutsideSourceA(ParseURL_table[i].url, buffer, NULL, &dummy);
+            pParseURLFromOutsideSourceA(ParseURL_table[i].url, buffer, NULL, &dummy);
         }
 
         memset(buffer, '#', sizeof(buffer)-1);


More information about the wine-patches mailing list