Austin English : shdocvw/tests: Don't check return values inside of if(0) ( LLVM/Clang).

Alexandre Julliard julliard at winehq.org
Thu Feb 10 11:42:10 CST 2011


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

Author: Austin English <austinenglish at gmail.com>
Date:   Wed Feb  9 13:43:44 2011 -0800

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

---

 dlls/shdocvw/tests/shdocvw.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

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-cvs mailing list