Use strncmp correctly.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@50715 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Analysis/CFRefCount.cpp b/lib/Analysis/CFRefCount.cpp
index 455ac78..61325b6 100644
--- a/lib/Analysis/CFRefCount.cpp
+++ b/lib/Analysis/CFRefCount.cpp
@@ -531,7 +531,7 @@
const char* s = S.getIdentifierInfoForSlot(0)->getName();
- if (!strncmp(s, "init", 4))
+ if (strncmp(s, "init", 4) == 0)
return getInitMethodSummary(S);
return 0;
@@ -624,7 +624,7 @@
unsigned len = strlen(cls);
// Prefix matches?
- if (strncmp(cls, s, len))
+ if (strncmp(cls, s, len) != 0)
return 0;
s += len;
@@ -636,7 +636,7 @@
if (s[0] == '\0')
break;
- if (!strncmp(s, "With", 4))
+ if (strncmp(s, "With", 4) == 0)
break;
return 0;