Fix logic error in string processing.


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@50710 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Analysis/CFRefCount.cpp b/lib/Analysis/CFRefCount.cpp
index 5ba37d4..040445b 100644
--- a/lib/Analysis/CFRefCount.cpp
+++ b/lib/Analysis/CFRefCount.cpp
@@ -636,7 +636,7 @@
     if (s[0] == '\0')
       break;
   
-    if (s[0]=='\0' || s[0]!='W' || s[1]!='i' || s[2]!='t' || s[3]!='h')
+    if (s[0]!='W' || s[1]!='i' || s[2]!='t' || s[3]!='h')
       break;
     
     return 0;